diff options
| author | Kagami Sascha Rosylight <saschanaz@outlook.com> | 2022-12-22 16:01:59 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-12-22 16:01:59 +0900 |
| commit | f1fd1d2585bd5230caea4c7b8814c2cf007e57cc (patch) | |
| tree | 212dd8f70312b9237484057deba6bc9611ec44d0 /packages/client/src/ui | |
| parent | Improve Dockerfile (#9105) (diff) | |
| download | sharkey-f1fd1d2585bd5230caea4c7b8814c2cf007e57cc.tar.gz sharkey-f1fd1d2585bd5230caea4c7b8814c2cf007e57cc.tar.bz2 sharkey-f1fd1d2585bd5230caea4c7b8814c2cf007e57cc.zip | |
style: add missing trailing commas (#9387)
Diffstat (limited to 'packages/client/src/ui')
| -rw-r--r-- | packages/client/src/ui/classic.widgets.vue | 10 | ||||
| -rw-r--r-- | packages/client/src/ui/deck/direct-column.vue | 2 |
2 files changed, 6 insertions, 6 deletions
diff --git a/packages/client/src/ui/classic.widgets.vue b/packages/client/src/ui/classic.widgets.vue index ca919b168a..163ec982ce 100644 --- a/packages/client/src/ui/classic.widgets.vue +++ b/packages/client/src/ui/classic.widgets.vue @@ -14,13 +14,13 @@ import XWidgets from '@/components/MkWidgets.vue'; export default defineComponent({ components: { - XWidgets + XWidgets, }, props: { place: { type: String, - } + }, }, emits: ['mounted'], @@ -57,10 +57,10 @@ export default defineComponent({ updateWidgets(widgets) { this.$store.set('widgets', [ ...this.$store.state.widgets.filter(w => w.place !== this.place), - ...widgets + ...widgets, ]); - } - } + }, + }, }); </script> diff --git a/packages/client/src/ui/deck/direct-column.vue b/packages/client/src/ui/deck/direct-column.vue index c60c5707f1..75b018cacd 100644 --- a/packages/client/src/ui/deck/direct-column.vue +++ b/packages/client/src/ui/deck/direct-column.vue @@ -25,7 +25,7 @@ const pagination = { endpoint: 'notes/mentions' as const, limit: 10, params: { - visibility: 'specified' + visibility: 'specified', }, }; </script> |