Skip to content

Commit 89119fc

Browse files
chore: lint
Signed-off-by: Crisciany Souza <criscianysilva1997@gmail.com>
1 parent d8e1c4c commit 89119fc

4 files changed

Lines changed: 25 additions & 24 deletions

File tree

src/store/userconfig.js

Lines changed: 16 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -4,25 +4,26 @@
44
*/
55

66
import { defineStore } from 'pinia'
7+
8+
import axios from '@nextcloud/axios'
79
import { loadState } from '@nextcloud/initial-state'
810
import { generateOcsUrl } from '@nextcloud/router'
9-
import axios from '@nextcloud/axios'
1011

1112
export const useUserConfigStore = defineStore('userconfig', {
12-
state: () => ({
13-
grid_view: loadState('libresign', 'config', { grid_view: false }).grid_view,
14-
}),
15-
actions: {
16-
onUpdate(key, value) {
17-
this[key] = value
18-
},
13+
state: () => ({
14+
grid_view: loadState('libresign', 'config', { grid_view: false }).grid_view,
15+
}),
16+
actions: {
17+
onUpdate(key, value) {
18+
this[key] = value
19+
},
1920

20-
async update(key, value) {
21-
this.onUpdate(key, value)
21+
async update(key, value) {
22+
this.onUpdate(key, value)
2223

23-
await axios.put(generateOcsUrl('/apps/libresign/api/v1/account/config/{key}', { key }), {
24-
value,
25-
})
26-
},
27-
},
24+
await axios.put(generateOcsUrl('/apps/libresign/api/v1/account/config/{key}', { key }), {
25+
value,
26+
})
27+
},
28+
},
2829
})

src/views/DefaultPageError.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ export default {
7979
box-sizing: border-box;
8080
font-family: 'Nunito', sans-serif;
8181
max-width: 560px;
82-
padding-left: 50px;
82+
padding-inline-start: 50px;
8383
8484
h1{
8585
font-size: 65px;

src/views/RenewEmail.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ body {
116116
height: 130px;
117117
margin: 0 auto;
118118
position: relative;
119-
left: unset;
119+
inset-inline-start: unset;
120120
}
121121
}
122122
@@ -146,7 +146,7 @@ body {
146146
}
147147
&__body {
148148
white-space: pre-line;
149-
text-align: left;
149+
text-align: start;
150150
font-size: 1rem;
151151
padding: 1rem;
152152
}

src/views/Validation.vue

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -625,7 +625,7 @@ export default {
625625
}
626626
}
627627
button {
628-
float: right;
628+
float: inline-end;
629629
margin-top: 20px;
630630
align-self: flex-end;
631631
}
@@ -687,12 +687,12 @@ export default {
687687
box-sizing: border-box;
688688
}
689689
.extra {
690-
margin-left: 44px;
691-
padding-right: 44px;
690+
margin-inline-start: 44px;
691+
padding-inline-end: 44px;
692692
}
693693
.extra-chain {
694-
margin-left: 88px;
695-
padding-right: 88px;
694+
margin-inline-start: 88px;
695+
padding-inline-end: 88px;
696696
}
697697
}
698698
@@ -708,7 +708,7 @@ export default {
708708
font-size: 1.3rem;
709709
}
710710
.infor-container {
711-
margin-right: 0px;
711+
margin-inline-end: 0px;
712712
.section {
713713
width: unset;
714714
box-shadow: none;

0 commit comments

Comments
 (0)