File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 2
2
3
3
All notable changes to the "commit-message-editor" extension will be documented in this file.
4
4
5
+ ## [ 0.23.1] - 2023-03-20
6
+
7
+ ### Fixed
8
+
9
+ - Fix CSS overlay issue: focus border of the buttons in editor was clipped.
10
+
5
11
## [ 0.23.0] - 2023-03-06
6
12
7
13
### Added
Original file line number Diff line number Diff line change @@ -117,15 +117,9 @@ export class Editor extends connect(store)(LitElement) {
117
117
@vsc-select ="${ this . _handleTabChange } "
118
118
>
119
119
< vscode-tab-header slot ="header "> Edit as text</ vscode-tab-header >
120
- < vscode-tab-panel
121
- > < vscode-scrollable
122
- > ${ textView } </ vscode-scrollable
123
- > </ vscode-tab-panel
124
- >
120
+ < vscode-tab-panel > ${ textView } </ vscode-tab-panel >
125
121
< vscode-tab-header slot ="header "> Edit as form</ vscode-tab-header >
126
- < vscode-tab-panel >
127
- < vscode-scrollable > ${ formView } </ vscode-scrollable > </ vscode-tab-panel
128
- >
122
+ < vscode-tab-panel > ${ formView } </ vscode-tab-panel >
129
123
</ vscode-tabs >
130
124
</ div >
131
125
` ;
You can’t perform that action at this time.
0 commit comments