Skip to content

Commit 88e603d

Browse files
committed
ci: Clean up sonar cloud issues
1 parent 7523d80 commit 88e603d

File tree

3 files changed

+3
-12
lines changed

3 files changed

+3
-12
lines changed

.sonarcloud.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# Path to sources
22
sonar.sources=src/
3-
sonar.exclusions=**/*.test.ts*
3+
sonar.exclusions=**/*.test.ts*,src/common/localization/*

src/react/components/pages/editorPage/editorFooter.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ export default class EditorFooter extends React.Component<IEditorFooterProps, IE
126126
}
127127

128128
private blurTagsInput() {
129-
const inputElement = document.querySelector(".ReactTags__tagInputField") as HTMLElement;
129+
const inputElement: HTMLElement = document.querySelector(".ReactTags__tagInputField");
130130
if (inputElement) {
131131
setImmediate(() => inputElement.blur());
132132
}

src/react/components/shell/titleBar.scss

+1-10
Original file line numberDiff line numberDiff line change
@@ -211,18 +211,9 @@
211211
white-space: nowrap;
212212
overflow: hidden;
213213

214-
& > .rc-menu-item, & > .rc-menu-submenu > .rc-menu-submenu-title {
215-
216-
}
217-
218214
& > .rc-menu-submenu, & > .rc-menu-item {
219215
display: inline-block;
220216
vertical-align: bottom;
221-
222-
&-active {
223-
224-
225-
}
226217
}
227218

228219
&:after {
@@ -243,7 +234,7 @@
243234
}
244235
.rc-menu-submenu-arrow {
245236
display: inline-block;
246-
font: normal normal normal 14px/1 FontAwesome;
237+
font: normal normal normal 14px/1 FontAwesome, sans-serif;
247238
font-size: inherit;
248239
vertical-align: baseline;
249240
text-align: center;

0 commit comments

Comments
 (0)