Skip to content

Commit a4d5acd

Browse files
authored
format + url
1 parent 6f9983e commit a4d5acd

2 files changed

Lines changed: 10 additions & 10 deletions

File tree

tool/web-app/index.html

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ <h1>Azure Database Selector</h1>
1515
<section class="left-panel">
1616
<form id="advisor-form" aria-labelledby="form-title">
1717
<h2 id="form-title">Select Your Database Preferences</h2>
18-
<label for="preset-usecase">Preset Use Case:
18+
<label for="preset-usecase">Preset Use Case
1919
<span class="info-icon" tabindex="0" data-tooltip="Quickly fill the form for common scenarios.">ℹ️</span>
2020
</label>
2121
<select id="preset-usecase" name="preset-usecase">
@@ -25,7 +25,7 @@ <h2 id="form-title">Select Your Database Preferences</h2>
2525
<option value="analytics">Analytics</option>
2626
</select>
2727

28-
<label for="data-volume">Data Volume:
28+
<label for="data-volume">Data Volume
2929
<span class="info-icon" tabindex="0" data-tooltip="Choose the size of your data storage needs. For example, less than 10GB is suitable for small applications like blogs, while more than 1TB is ideal for enterprise systems.">ℹ️</span>
3030
</label>
3131
<select id="data-volume" name="data-volume" required>
@@ -34,7 +34,7 @@ <h2 id="form-title">Select Your Database Preferences</h2>
3434
<option value=">1TB">More than 1TB</option>
3535
</select>
3636

37-
<label for="data-type">Data Type:
37+
<label for="data-type">Data Type
3838
<span class="info-icon" tabindex="0" data-tooltip="Select the format of the data you will be storing. For instance, structured data is used for relational databases, while unstructured data is common for media files.">ℹ️</span>
3939
</label>
4040
<select id="data-type" name="data-type" required>
@@ -43,7 +43,7 @@ <h2 id="form-title">Select Your Database Preferences</h2>
4343
<option value="unstructured">Unstructured (e.g., images, videos)</option>
4444
</select>
4545

46-
<label for="latency">Latency Requirements:
46+
<label for="latency">Latency Requirements
4747
<span class="info-icon" tabindex="0" data-tooltip="Indicate how quickly you need the database to respond. For example, less than 10ms is critical for real-time applications like gaming.">ℹ️</span>
4848
</label>
4949
<select id="latency" name="latency" required>
@@ -52,31 +52,31 @@ <h2 id="form-title">Select Your Database Preferences</h2>
5252
<option value=">100ms">More than 100ms</option>
5353
</select>
5454

55-
<label for="scalability">Scalability Needs:
55+
<label for="scalability">Scalability Needs
5656
<span class="info-icon" tabindex="0" data-tooltip="Specify if the database should support global or local scaling. For instance, global scaling is essential for multinational companies.">ℹ️</span>
5757
</label>
5858
<select id="scalability" name="scalability" required>
5959
<option value="global">Global</option>
6060
<option value="local">Local</option>
6161
</select>
6262

63-
<label for="consistency">Consistency Model:
63+
<label for="consistency">Consistency Model
6464
<span class="info-icon" tabindex="0" data-tooltip="Choose the consistency model that fits your application's needs. Strong consistency ensures immediate updates, while eventual consistency is suitable for distributed systems.">ℹ️</span>
6565
</label>
6666
<select id="consistency" name="consistency" required>
6767
<option value="strong">Strong</option>
6868
<option value="eventual">Eventual</option>
6969
</select>
7070

71-
<label for="integration-needs">Integration Needs:
71+
<label for="integration-needs">Integration Needs
7272
<span class="info-icon" tabindex="0" data-tooltip="Indicate if you require integration with other services. For example, integration is necessary for analytics pipelines.">ℹ️</span>
7373
</label>
7474
<select id="integration-needs" name="integration-needs">
7575
<option value="yes">Yes</option>
7676
<option value="no">No</option>
7777
</select>
7878

79-
<label for="security">Security Requirements:
79+
<label for="security">Security Requirements
8080
<span class="info-icon" tabindex="0" data-tooltip="Select the security measures that are necessary for your data. Encryption is ideal for sensitive data, while compliance is crucial for regulated industries.">ℹ️</span>
8181
</label>
8282
<select id="security" name="security">
@@ -85,7 +85,7 @@ <h2 id="form-title">Select Your Database Preferences</h2>
8585
<option value="compliance">Compliance</option>
8686
</select>
8787

88-
<label for="budget">Budget:
88+
<label for="budget">Budget
8989
<span class="info-icon" tabindex="0" data-tooltip="Specify your budget range for database solutions. For example, less than 100 USD is suitable for startups, while more than 500 USD is common for large enterprises.">ℹ️</span>
9090
</label>
9191
<select id="budget" name="budget" required>

tool/web-app/script.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,7 @@ function showJustification(justification, confidence) {
305305
<div style="font-size:0.97em;color:#b71c1c;margin-bottom:0.5em;">
306306
<strong>Disclaimer:</strong> This tool is an advisor only. For official guidance, support, or more detailed information, please refer to <a href='https://support.microsoft.com/contactus?ContactUsExperienceEntryPointAssetId=S.HP.SMC-HOME' target='_blank' rel='noopener'>Microsoft Sales and Support</a> or the official Microsoft documentation.
307307
</div>`;
308-
document.getElementById('justification-text').innerHTML = extendedDef + justification;
308+
document.getElementById('justification-text').innerHTML = extendedDef;
309309
justDiv.style.display = 'block';
310310
document.getElementById('confidence-value').textContent = confidence + '%';
311311
confDiv.style.display = 'block';

0 commit comments

Comments
 (0)