Skip to content

Commit da83a7e

Browse files
author
Rachel Macfarlane
committed
Fixes microsoft#69029, File On should be marked as a required field in issue reporter
1 parent 826d34e commit da83a7e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/vs/code/electron-browser/issue/issueReporterPage.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ export default (): string => `
1919
</div>
2020
2121
<div class="input-group" id="problem-source">
22-
<label class="inline-label" for="issue-source">${escape(localize('issueSourceLabel', "File on"))}</label>
23-
<select id="issue-source" class="inline-form-control">
22+
<label class="inline-label" for="issue-source">${escape(localize('issueSourceLabel', "File on"))}<span class="required-input">*</span></label>
23+
<select id="issue-source" class="inline-form-control" required>
2424
<!-- To be dynamically filled -->
2525
</select>
2626
<div id="problem-source-help-text" class="instructions hidden">${escape(localize('disableExtensionsLabelText', "Try to reproduce the problem after {0}. If the problem only reproduces when extensions are active, it is likely an issue with an extension."))

0 commit comments

Comments
 (0)