We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a81c0a5 commit 9b819f6Copy full SHA for 9b819f6
ui/src/components/inputs/MonacoEditor.vue
@@ -230,7 +230,7 @@
230
replaceRowsIcons(
231
mutations.flatMap(({addedNodes}) => {
232
const nodes = [...addedNodes] as (Node | HTMLElement)[];
233
- const maybeRows: HTMLElement[] = nodes.filter(n => (<HTMLElement>n).classList?.contains("monaco-list-row")) as HTMLElement[];
+ const maybeRows: HTMLElement[] = nodes.filter(n => (n as HTMLElement).classList?.contains("monaco-list-row")) as HTMLElement[];
234
235
for(let node of nodes) {
236
let maybeRow: HTMLElement | null = null;
0 commit comments