Skip to content

Commit e1f7752

Browse files
committed
fixing lint errors
1 parent b000514 commit e1f7752

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

webui/src/js/models/k8s-domain-definition.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ define(['knockout', 'utils/observable-properties', 'utils/common-utilities', 'ut
9494
this.runtimeSecretName.addValidator(...validationHelper.getK8sNameValidators());
9595
this.runtimeSecretValue = props.createProperty(window.api.utils.generateUuid()).asCredential();
9696
this.introspectorJobActiveDeadlineSeconds = props.createProperty(900);
97-
this.precreateService = props.createProperty(false)
97+
this.precreateService = props.createProperty(false);
9898

9999
const internalFields = {
100100
// this internal observable list property is used for JSON read/write of this.secrets

webui/src/js/utils/k8s-domain-v8-resource-generator.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ function(project, K8sDomainConfigMapGenerator, jsYaml, i18n) {
4040
if (this.project.k8sDomain.precreateService.value) {
4141
domainResource.spec.serverService = {
4242
precreateService: true
43-
}
43+
};
4444
}
4545

4646
if (this.project.k8sDomain.domainHome.value) {

webui/src/js/utils/k8s-domain-v9-resource-generator.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ function(project, K8sDomainConfigMapGenerator, jsYaml, i18n, auxImageHelper) {
4444
if (this.project.k8sDomain.precreateService.value) {
4545
domainResource.spec.serverService = {
4646
precreateService: true
47-
}
47+
};
4848
}
4949

5050
if (this.project.k8sDomain.domainHome.value) {

0 commit comments

Comments
 (0)