Fix trailing commas (#12628)
This commit is contained in:
parent
2217d0c050
commit
ebdb443180
|
@ -54,7 +54,7 @@ watch(() => props.lang, (to) => {
|
||||||
return new Promise((resolve) => {
|
return new Promise((resolve) => {
|
||||||
fetchLanguage(to).then(() => resolve);
|
fetchLanguage(to).then(() => resolve);
|
||||||
});
|
});
|
||||||
}, { immediate: true, });
|
}, { immediate: true });
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped lang="scss">
|
<style scoped lang="scss">
|
||||||
|
|
|
@ -108,7 +108,7 @@ import {
|
||||||
UnicodeEmojiDef,
|
UnicodeEmojiDef,
|
||||||
unicodeEmojiCategories as categories,
|
unicodeEmojiCategories as categories,
|
||||||
getEmojiName,
|
getEmojiName,
|
||||||
CustomEmojiFolderTree
|
CustomEmojiFolderTree,
|
||||||
} from '@/scripts/emojilist.js';
|
} from '@/scripts/emojilist.js';
|
||||||
import MkRippleEffect from '@/components/MkRippleEffect.vue';
|
import MkRippleEffect from '@/components/MkRippleEffect.vue';
|
||||||
import * as os from '@/os.js';
|
import * as os from '@/os.js';
|
||||||
|
|
|
@ -104,7 +104,7 @@ async function onClick() {
|
||||||
});
|
});
|
||||||
emit('update:user', {
|
emit('update:user', {
|
||||||
...props.user,
|
...props.user,
|
||||||
withReplies: defaultStore.state.defaultWithReplies
|
withReplies: defaultStore.state.defaultWithReplies,
|
||||||
});
|
});
|
||||||
hasPendingFollowRequestFromYou.value = true;
|
hasPendingFollowRequestFromYou.value = true;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue