Skip to content

Commit 025423f

Browse files
authored
Set empty default for dropdown selection (#653)
1 parent 95b066e commit 025423f

File tree

4 files changed

+4
-0
lines changed

4 files changed

+4
-0
lines changed

.github/ISSUE_TEMPLATE/01_bug_report.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ body:
4242
default: 0
4343
label: Extension name and maintainer
4444
options:
45+
- ''
4546
- adjacent-windows@klangman @klangman
4647
- back-to-monitor@nathan818fr @nathan818fr
4748
- blur-overview@nailfarmer.nailfarmer.com

.github/ISSUE_TEMPLATE/02_feature_request.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ body:
1010
default: 0
1111
label: Extension name and maintainer
1212
options:
13+
- ''
1314
- adjacent-windows@klangman @klangman
1415
- back-to-monitor@nathan818fr @nathan818fr
1516
- blur-overview@nailfarmer.nailfarmer.com

.github/bug_report_creator.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@ def main():
8585

8686
xlets_and_authors.append(f'{name}{author}')
8787
finally:
88+
xlets_and_authors.append('')
8889
dropdown_list = sorted(sorted(xlets_and_authors), key=str.casefold)
8990
with open(os.path.join(repo_folder, '.github', 'ISSUE_TEMPLATE',
9091
'01_bug_report.yml'), 'w',

.github/feature_request_creator.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ def main():
6060

6161
xlets_and_authors.append(f'{name}{author}')
6262
finally:
63+
xlets_and_authors.append('')
6364
dropdown_list = sorted(sorted(xlets_and_authors), key=str.casefold)
6465
with open(os.path.join(repo_folder, '.github', 'ISSUE_TEMPLATE',
6566
'02_feature_request.yml'), 'w',

0 commit comments

Comments
 (0)