Skip to content

Commit 12e0499

Browse files
committed
chore: align code style with ESLint rules
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
1 parent 8b21dd7 commit 12e0499

3 files changed

Lines changed: 5 additions & 4 deletions

File tree

core/src/install.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*/
55

66
import Vue from 'vue'
7-
import Setup from './views/Setup.vue'
7+
import WebInstaller from './views/WebInstaller.vue'
88

99
type Error = {
1010
error: string
@@ -55,5 +55,5 @@ export type SetupLinks = {
5555
adminDBConfiguration: string
5656
}
5757

58-
const SetupVue = Vue.extend(Setup)
58+
const SetupVue = Vue.extend(WebInstaller)
5959
new SetupVue().$mount('#content')
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import type { SetupConfig, SetupLinks } from '../install.ts'
77

88
import { cleanup, findByRole, fireEvent, getAllByRole, getByRole, render } from '@testing-library/vue'
99
import { beforeEach, describe, expect, it } from 'vitest'
10-
import SetupView from './Setup.vue'
10+
import SetupView from './WebInstaller.vue'
1111

1212
import '../../css/guest.css'
1313

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,7 @@ function checkPasswordEntropy(password: string = ''): PasswordStrength {
326326
}
327327
328328
export default defineComponent({
329-
name: 'Setup',
329+
name: 'WebInstaller',
330330
331331
components: {
332332
IconArrowRight,
@@ -406,6 +406,7 @@ export default defineComponent({
406406
get(): string[] {
407407
return this.config?.dbsslnoverify ? ['1'] : []
408408
},
409+
409410
set(checked: string[]) {
410411
this.config.dbsslnoverify = checked.includes('1')
411412
},

0 commit comments

Comments
 (0)