Skip to content

Commit 7497dd6

Browse files
committed
fix: ran lint fix command
1 parent 60c7480 commit 7497dd6

File tree

6 files changed

+18
-11
lines changed

6 files changed

+18
-11
lines changed

src/ui/views/NewAccount.vue

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
<template>
22
<v-container>
3-
<v-stepper v-model="currentStep" class="options mt-3 mb-9">
3+
<v-stepper
4+
v-model="currentStep"
5+
class="options mt-3 mb-9">
46
<v-stepper-header>
57
<v-stepper-step
68
:complete="currentStep > 0"
@@ -145,7 +147,7 @@
145147
<div class="headline">
146148
{{ t('LabelServersetup') }}
147149
</div>
148-
<v-form>
150+
<v-form>
149151
<v-text-field
150152
v-model="server"
151153
:rules="[validateUrl]"
@@ -717,5 +719,4 @@ export default {
717719
}
718720
}
719721
}
720-
721722
</style>

src/ui/views/native/About.vue

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
<template>
2-
<div class="native-scroll-container">
2+
<div class="native-scroll-container">
33
<Drawer :visible.sync="drawer" />
4-
<v-app-bar fixed
4+
<v-app-bar
5+
fixed
56
app>
67
<v-app-bar-nav-icon
78
class="mr-2 ml-n2"

src/ui/views/native/AddBookmarkIntent.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<template>
22
<div class="native-scroll-container">
3-
<v-app-bar fixed
3+
<v-app-bar
4+
fixed
45
app>
56
<v-app-bar-title>Add Bookmark</v-app-bar-title>
67
<v-spacer />

src/ui/views/native/ImportExport.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
<template>
22
<div class="native-scroll-container">
33
<Drawer :visible.sync="drawer" />
4-
<v-app-bar fixed
4+
<v-app-bar
5+
fixed
56
app>
67
<v-app-bar-nav-icon
78
class="mr-2 ml-n2"

src/ui/views/native/Options.vue

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<template>
2-
<div class="native-scroll-container">
3-
<v-app-bar fixed
2+
<div class="native-scroll-container">
3+
<v-app-bar
4+
fixed
45
app>
56
<v-btn
67
icon

src/ui/views/native/Tree.vue

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
<template>
22
<div class="native-scroll-container">
33
<Drawer :visible.sync="drawer" />
4-
<v-app-bar fixed
4+
<v-app-bar
5+
fixed
56
app>
67
<v-app-bar-nav-icon
78
v-if="!tree || currentFolderId === tree.id"
@@ -111,8 +112,9 @@
111112
</v-btn>
112113
</v-app-bar>
113114
<v-main>
114-
<v-progress-linear fixed
115+
<v-progress-linear
115116
v-if="syncProgress"
117+
fixed
116118
:value="syncProgress * 100 || 0"
117119
color="blue darken-1" />
118120
<v-card>

0 commit comments

Comments
 (0)