Skip to content

Commit 5cf077f

Browse files
committed
fixing lint issues
1 parent 5ee04f9 commit 5cf077f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

webui/src/js/viewModels/domain-design-view.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -430,7 +430,7 @@ function (project, accUtils, utils, ko, i18n, screenUtils, BufferingDataProvider
430430
const labelNames = [];
431431
this.project.k8sDomain.domainNodeSelector.observable().forEach(label => {
432432
labelNames.push(label.name);
433-
})
433+
});
434434

435435
let nextIndex = 0;
436436
while (labelNames.indexOf(`new-label-${nextIndex + 1}`) !== -1) {

webui/src/js/viewModels/vz-component-design-view.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -438,7 +438,7 @@ function (project, accUtils, utils, ko, i18n, screenUtils, BufferingDataProvider
438438
const labelNames = [];
439439
this.project.k8sDomain.domainNodeSelector.observable().forEach(label => {
440440
labelNames.push(label.name);
441-
})
441+
});
442442

443443
let nextIndex = 0;
444444
while (labelNames.indexOf(`new-label-${nextIndex + 1}`) !== -1) {

0 commit comments

Comments
 (0)