summaryrefslogtreecommitdiff
path: root/packages/client/src/components/MkSample.vue
diff options
context:
space:
mode:
authorKagami Sascha Rosylight <saschanaz@outlook.com>2022-12-22 16:01:59 +0900
committerGitHub <noreply@github.com>2022-12-22 16:01:59 +0900
commitf1fd1d2585bd5230caea4c7b8814c2cf007e57cc (patch)
tree212dd8f70312b9237484057deba6bc9611ec44d0 /packages/client/src/components/MkSample.vue
parentImprove Dockerfile (#9105) (diff)
downloadmisskey-f1fd1d2585bd5230caea4c7b8814c2cf007e57cc.tar.gz
misskey-f1fd1d2585bd5230caea4c7b8814c2cf007e57cc.tar.bz2
misskey-f1fd1d2585bd5230caea4c7b8814c2cf007e57cc.zip
style: add missing trailing commas (#9387)
Diffstat (limited to 'packages/client/src/components/MkSample.vue')
-rw-r--r--packages/client/src/components/MkSample.vue12
1 files changed, 6 insertions, 6 deletions
diff --git a/packages/client/src/components/MkSample.vue b/packages/client/src/components/MkSample.vue
index 1169654d09..1d25ab54b5 100644
--- a/packages/client/src/components/MkSample.vue
+++ b/packages/client/src/components/MkSample.vue
@@ -51,7 +51,7 @@ export default defineComponent({
text: '',
flag: true,
radio: 'misskey',
- mfm: `Hello world! This is an @example mention. BTW you are @${this.$i ? this.$i.username : 'guest'}.\nAlso, here is ${config.url} and [example link](${config.url}). for more details, see https://example.com.\nAs you know #misskey is open-source software.`
+ mfm: `Hello world! This is an @example mention. BTW you are @${this.$i ? this.$i.username : 'guest'}.\nAlso, here is ${config.url} and [example link](${config.url}). for more details, see https://example.com.\nAs you know #misskey is open-source software.`,
};
},
@@ -69,17 +69,17 @@ export default defineComponent({
foo: {
type: 'boolean',
default: true,
- label: 'This is a boolean property'
+ label: 'This is a boolean property',
},
bar: {
type: 'number',
default: 300,
- label: 'This is a number property'
+ label: 'This is a number property',
},
baz: {
type: 'string',
default: 'Misskey makes you happy.',
- label: 'This is a string property'
+ label: 'This is a string property',
},
});
},
@@ -95,7 +95,7 @@ export default defineComponent({
async openMenu(ev) {
os.popupMenu([{
type: 'label',
- text: 'Fruits'
+ text: 'Fruits',
}, {
text: 'Create some apples',
action: () => {},
@@ -111,6 +111,6 @@ export default defineComponent({
action: () => {},
}], ev.currentTarget ?? ev.target);
},
- }
+ },
});
</script>