Skip to content

Commit 0ad7a6e

Browse files
Rotzbuapeterthomassen
authored andcommitted
fix(webapp): autoformatting for mustache eslint style
1 parent 40afecb commit 0ad7a6e

File tree

11 files changed

+37
-37
lines changed

11 files changed

+37
-37
lines changed

www/webapp/src/App.vue

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@
1414
:to="{name: item.name}"
1515
:exact="true">
1616
<v-list-item-action>
17-
<v-icon>{{item.icon}}</v-icon>
17+
<v-icon>{{ item.icon }}</v-icon>
1818
</v-list-item-action>
1919
<v-list-item-content>
2020
<v-list-item-title>
21-
{{item.text}}
22-
<v-icon :color="item.post_icon_color" class="text--darken-2" small v-if="item.post_icon">{{item.post_icon}}</v-icon>
21+
{{ item.text }}
22+
<v-icon :color="item.post_icon_color" class="text--darken-2" small v-if="item.post_icon">{{ item.post_icon }}</v-icon>
2323
</v-list-item-title>
2424
</v-list-item-content>
2525
</v-list-item>
@@ -41,8 +41,8 @@
4141
<router-link
4242
class="primary--text text--darken-2"
4343
:to="{name: item.name}"
44-
>{{item.text}}</router-link>
45-
<v-icon :color="item.post_icon_color" class="ml-1 text--darken-1" small v-if="item.post_icon">{{item.post_icon}}</v-icon>
44+
>{{ item.text }}</router-link>
45+
<v-icon :color="item.post_icon_color" class="ml-1 text--darken-1" small v-if="item.post_icon">{{ item.post_icon }}</v-icon>
4646
</span>
4747
</div>
4848
<v-btn class="mx-4" color="primary" depressed :to="{name: 'signup', query: $route.query}" v-if="!user.authenticated">Create Account</v-btn>
@@ -70,7 +70,7 @@
7070
v-on="on"
7171
>
7272
more
73-
<v-icon right>{{mdiMenuDown}}</v-icon>
73+
<v-icon right>{{ mdiMenuDown }}</v-icon>
7474
</v-btn>
7575
</template>
7676

@@ -143,7 +143,7 @@
143143
</div>
144144
<div class="grey darken-4 d-md-flex flex-row justify-space-between pa-6">
145145
<div>
146-
<p>{{email}}</p>
146+
<p>{{ email }}</p>
147147
<p>
148148
Kyffhäuserstraße 5<br/>
149149
10781 Berlin<br/>
@@ -153,7 +153,7 @@
153153
<div>
154154
<p>
155155
Please <router-link :to="{name: 'donate'}">donate</router-link>!
156-
<v-icon color="red" class="text--darken-2" dense>{{mdiHeart}}</v-icon>
156+
<v-icon color="red" class="text--darken-2" dense>{{ mdiHeart }}</v-icon>
157157
</p>
158158
<p>
159159
European Bank Account:<br>

www/webapp/src/components/Field/RecordList.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
small
2525
text
2626
v-if="!readonly && !disabled"
27-
><v-icon>{{mdiPlus}}</v-icon> add another value</v-btn>
27+
><v-icon>{{ mdiPlus }}</v-icon> add another value</v-btn>
2828
<!--div><code style="white-space: normal">{{ value }}</code></div-->
2929
</div>
3030
</template>

www/webapp/src/views/AboutPage.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@
3636
<v-row class="pb-8">
3737
<v-col class="col-12 col-sm-6 d-flex" v-for="p in purposes" :key="p.title">
3838
<v-card>
39-
<v-card-title>{{p.title}}</v-card-title>
40-
<v-card-text>{{p.text}}</v-card-text>
39+
<v-card-title>{{ p.title }}</v-card-title>
40+
<v-card-text>{{ p.text }}</v-card-text>
4141
</v-card>
4242
</v-col>
4343
</v-row>

www/webapp/src/views/Console/TOTPVerifyDialog.vue

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
</div>
1515
<v-spacer/>
1616
<v-icon @click.stop="close">
17-
{{mdiClose}}
17+
{{ mdiClose }}
1818
</v-icon>
1919
</v-card-title>
2020
<v-divider/>
@@ -29,22 +29,22 @@
2929

3030
<v-card-text v-if="!!successDetail" class="text-center">
3131
<p class="mt-2">
32-
<v-icon>{{mdiCheck}}</v-icon>
32+
<v-icon>{{ mdiCheck }}</v-icon>
3333
Great! Continue to <router-link :to="{name: 'login'}">log in</router-link>.
3434
</p>
3535
</v-card-text>
3636

3737
<v-card-text v-if="!!data && !successDetail" class="text-center">
3838
<p class="mt-2">
39-
<v-icon>{{mdiNumeric1Circle}}</v-icon>
39+
<v-icon>{{ mdiNumeric1Circle }}</v-icon>
4040
Please scan the following QR code with an authenticator app (e.g. Google Authenticator).<br />
4141
<strong>This code is only displayed once.</strong>
4242
</p>
4343
<div class="text-center">
4444
<qrcode-vue :value="data.uri" size="300" level="H"/>
4545
</div>
4646
<p class="mt-6">
47-
<v-icon>{{mdiNumeric2Circle}}</v-icon>
47+
<v-icon>{{ mdiNumeric2Circle }}</v-icon>
4848
Enter the code displayed in the authenticator app to confirm and activate the token:
4949
</p>
5050

www/webapp/src/views/CrudList.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
depressed
6363
:disabled="user.working"
6464
>
65-
<v-icon>{{mdiPlus}}</v-icon>
65+
<v-icon>{{ mdiPlus }}</v-icon>
6666
</v-btn>
6767
<template #extension v-if="$vuetify.breakpoint.xsOnly">
6868
<v-text-field

www/webapp/src/views/DonatePage.vue

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<v-expansion-panel>
1919
<v-expansion-panel-header class="text-subtitle-1">
2020
<v-layout>
21-
<v-icon class="mr-2">{{mdiBankTransferIn}}</v-icon> Direct Debit – Let us Take your Money (Europe)
21+
<v-icon class="mr-2">{{ mdiBankTransferIn }}</v-icon> Direct Debit – Let us Take your Money (Europe)
2222
</v-layout>
2323
</v-expansion-panel-header>
2424
<v-expansion-panel-content class="pt-4">
@@ -32,7 +32,7 @@
3232
<v-expansion-panel>
3333
<v-expansion-panel-header class="text-subtitle-1">
3434
<v-layout>
35-
<v-icon class="mr-2">{{mdiBankTransferOut}}</v-icon> Bank Transfer – Send us Money (Europe)
35+
<v-icon class="mr-2">{{ mdiBankTransferOut }}</v-icon> Bank Transfer – Send us Money (Europe)
3636
</v-layout>
3737
</v-expansion-panel-header>
3838
<v-expansion-panel-content class="pt-4">
@@ -63,7 +63,7 @@
6363
<v-expansion-panel>
6464
<v-expansion-panel-header class="text-subtitle-1">
6565
<v-layout>
66-
<v-icon class="mr-2">{{mdiCreditCardOutline}}</v-icon> Credit Card
66+
<v-icon class="mr-2">{{ mdiCreditCardOutline }}</v-icon> Credit Card
6767
</v-layout>
6868
</v-expansion-panel-header>
6969
<v-expansion-panel-content class="pt-4">
@@ -81,7 +81,7 @@
8181
<v-expansion-panel>
8282
<v-expansion-panel-header class="text-subtitle-1">
8383
<v-layout>
84-
<v-icon class="mr-2">{{mdiGithub}}</v-icon> GitHub Sponsors
84+
<v-icon class="mr-2">{{ mdiGithub }}</v-icon> GitHub Sponsors
8585
</v-layout>
8686
</v-expansion-panel-header>
8787
<v-expansion-panel-content class="pt-4">
@@ -94,7 +94,7 @@
9494
<v-expansion-panel>
9595
<v-expansion-panel-header class="text-subtitle-1">
9696
<v-layout>
97-
<v-icon class="mr-2">{{mdiGiftOutline}}</v-icon> PayPal
97+
<v-icon class="mr-2">{{ mdiGiftOutline }}</v-icon> PayPal
9898
</v-layout>
9999
</v-expansion-panel-header>
100100
<v-expansion-panel-content class="pt-4">
@@ -112,7 +112,7 @@
112112
<v-expansion-panel>
113113
<v-expansion-panel-header class="text-subtitle-1">
114114
<v-layout>
115-
<v-icon class="mr-2">{{mdiHeartMultipleOutline}}</v-icon> Double-up with Your Employer
115+
<v-icon class="mr-2">{{ mdiHeartMultipleOutline }}</v-icon> Double-up with Your Employer
116116
</v-layout>
117117
</v-expansion-panel-header>
118118
<v-expansion-panel-content class="pt-4">

www/webapp/src/views/DynSetup.vue

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
All operations on your domain require the following authorization token secret shown below:
3131
</p>
3232
<p align="center">
33-
<code>{{token}}</code>
33+
<code>{{ token }}</code>
3434
</p>
3535
<p>
3636
Please keep this token secret in a safe place.
@@ -53,15 +53,15 @@
5353
<tbody>
5454
<tr>
5555
<td>URL</td>
56-
<td class="fixed-width">https://update.{{LOCAL_PUBLIC_SUFFIXES[0]}}/</td>
56+
<td class="fixed-width">https://update.{{ LOCAL_PUBLIC_SUFFIXES[0] }}/</td>
5757
</tr>
5858
<tr>
5959
<td>Username</td>
60-
<td class="fixed-width">{{domain}}</td>
60+
<td class="fixed-width">{{ domain }}</td>
6161
</tr>
6262
<tr>
6363
<td>Password</td>
64-
<td class="fixed-width">{{token}}</td>
64+
<td class="fixed-width">{{ token }}</td>
6565
</tr>
6666
</tbody>
6767
</v-simple-table>
@@ -119,10 +119,10 @@
119119
<span v-if="ips.length > 1">are:</span><span v-if="ips.length === 1">is:</span>
120120
</p>
121121
<ul class="mb-4">
122-
<li v-for="ip in ips" :key="ip"><span class="fixed-width">{{ip}}</span></li>
122+
<li v-for="ip in ips" :key="ip"><span class="fixed-width">{{ ip }}</span></li>
123123
</ul>
124124
<p>
125-
The last time your DNS information changed was at {{lastChanged}}.
125+
The last time your DNS information changed was at {{ lastChanged }}.
126126
</p>
127127
<p>
128128
Your deSEC account setup looks good and is ready to use.

www/webapp/src/views/HomePage.vue

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,8 @@
6363
<v-container>
6464
<v-row justify="center" class="py-8">
6565
<v-col class="col-12 col-sm-4 text-center" v-for="f in features" :key="f.title">
66-
<v-icon x-large>{{f.icon}}</v-icon>
67-
<h1 class="grey--text text--darken-2"><span>{{f.title}}</span></h1>
66+
<v-icon x-large>{{ f.icon }}</v-icon>
67+
<h1 class="grey--text text--darken-2"><span>{{ f.title }}</span></h1>
6868
<p v-html="f.text"></p>
6969
</v-col>
7070
</v-row>
@@ -171,8 +171,8 @@
171171
</v-img>
172172
</template>
173173
<span>
174-
{{f.name}}
175-
<span v-if="f.adopted_by">sponsored by {{f.adopted_by}}</span>
174+
{{ f.name }}
175+
<span v-if="f.adopted_by">sponsored by {{ f.adopted_by }}</span>
176176
<span v-else>has no sponsor, support it now!</span>
177177
</span>
178178
</v-tooltip>

www/webapp/src/views/ImpressumPage.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<h3>Postanschrift / Address</h3>
88
<p>Kyffhäuserstr. 5<br>10781 Berlin</p>
99
<h3>E-Mail</h3>
10-
<p>{{email}}</p>
10+
<p>{{ email }}</p>
1111
<h3>Vertreten durch / Represented by</h3>
1212
<p>
1313
Dr. Nils Wisiol<br>

www/webapp/src/views/PrivacyPolicy.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
<v-row class="pb-8">
1111
<v-col class="col-12 col-sm-6 d-flex" v-for="p in privacy_policy" :key="p.title">
1212
<v-card>
13-
<v-card-title>{{p.title}}</v-card-title>
14-
<v-card-text>{{p.text}}</v-card-text>
13+
<v-card-title>{{ p.title }}</v-card-title>
14+
<v-card-text>{{ p.text }}</v-card-text>
1515
</v-card>
1616
</v-col>
1717
</v-row>
@@ -86,7 +86,7 @@
8686
<p></p><h3>Änderung unserer Datenschutzbestimmungen</h3>
8787
<p>Wir behalten uns vor, diese Datenschutzerklärung anzupassen, damit sie stets den aktuellen rechtlichen Anforderungen entspricht oder um Änderungen unserer Leistungen in der Datenschutzerklärung umzusetzen, z.B. bei der Einführung neuer Services. Für Ihren erneuten Besuch gilt dann die neue Datenschutzerklärung.</p>
8888
<h3>Fragen an den Datenschutzbeauftragten</h3>
89-
<p>Wenn Sie Fragen zum Datenschutz haben, schreiben Sie uns bitte eine E-Mail oder wenden Sie sich direkt an die für den Datenschutz verantwortliche Person in unserer Organisation: {{email}}</p>
89+
<p>Wenn Sie Fragen zum Datenschutz haben, schreiben Sie uns bitte eine E-Mail oder wenden Sie sich direkt an die für den Datenschutz verantwortliche Person in unserer Organisation: {{ email }}</p>
9090
<p><em>Die Datenschutzerklärung wurde <a href="https://www.activemind.de/datenschutz/datenschutzhinweis-generator/">mithilfe der activeMind AG</a> erstellt.</em></p>
9191
</v-container>
9292
</div>

0 commit comments

Comments
 (0)