File tree Expand file tree Collapse file tree 2 files changed +16
-1
lines changed Expand file tree Collapse file tree 2 files changed +16
-1
lines changed Original file line number Diff line number Diff line change 2
2
font-family : Arial, sans-serif;
3
3
padding : 20px ;
4
4
}
5
+
6
+ select # commit-type {
7
+ margin-bottom : 10px ;
8
+ }
Original file line number Diff line number Diff line change @@ -73,7 +73,18 @@ class SourceControlProvider implements vscode.WebviewViewProvider {
73
73
<title>Source Control</title>
74
74
</head>
75
75
<body>
76
- <div class="textarea-grow-wrap">
76
+ <div>
77
+ <select id="commit-type" name="commit-type">
78
+ <option value="feature">Feature</option>
79
+ <option value="bugfix">Bugfix</option>
80
+ <option value="hotfix">Hotfix</option>
81
+ <option value="chore">Chore</option>
82
+ <option value="epic">Epic</option>
83
+ <option value="design">Design</option>
84
+ <option value="experiment">Experiment</option>
85
+ <option value="documentation">Documentation</option>
86
+ </select>
87
+
77
88
<textarea id="commit-input" name="commit-message" placeholder="Commit message" rows="1" maxlength="124"></textarea>
78
89
</div>
79
90
You can’t perform that action at this time.
0 commit comments