unscrewup the spacing

This commit is contained in:
Chizu 2023-03-10 03:08:04 +09:00
parent 7ac19058a5
commit 704db2645f
2 changed files with 7 additions and 7 deletions

View file

@ -284,9 +284,9 @@ const getNodeInfo = async ({ store }) => {
store.dispatch('setInstanceOption', { name: 'pollLimits', value: metadata.pollLimits })
store.dispatch('setInstanceOption', { name: 'mailerEnabled', value: metadata.mailerEnabled })
store.dispatch('setInstanceOption', { name: 'translationEnabled', value: features.includes('akkoma:machine_translation') })
store.dispatch('setInstanceOption', { name: 'quotePosting', value: features.includes('quote_posting') })
store.dispatch('setInstanceOption', { name: 'customEmojiReactions', value: features.includes('custom_emoji_reactions') })
store.dispatch('setInstanceOption', { name: 'bubbleTimeline', value: features.includes('bubble_timeline') })
store.dispatch('setInstanceOption', { name: 'quotePosting', value: features.includes('quote_posting') })
store.dispatch('setInstanceOption', { name: 'customEmojiReactions', value: features.includes('custom_emoji_reactions') })
store.dispatch('setInstanceOption', { name: 'bubbleTimeline', value: features.includes('bubble_timeline') })
const uploadLimits = metadata.uploadLimits
store.dispatch('setInstanceOption', { name: 'uploadlimit', value: parseInt(uploadLimits.general) })

View file

@ -3,12 +3,12 @@ import fileSizeFormatService from '../../services/file_size_format/file_size_for
const FeaturesPanel = {
computed: {
shout: function () { return this.$store.state.instance.shoutAvailable },
bubbleTimeline: function () { return this.$store.state.instance.bubbleTimeline },
bubbleTimeline: function () { return this.$store.state.instance.bubbleTimeline },
pleromaChatMessages: function () { return this.$store.state.instance.pleromaChatMessagesAvailable },
customEmojiReactions: function () { return this.$store.state.instance.customEmojiReactions },
customEmojiReactions: function () { return this.$store.state.instance.customEmojiReactions },
gopher: function () { return this.$store.state.instance.gopherAvailable },
translationEnabled: function () { return this.$store.state.instance.translationEnabled },
quotePosting: function () { return this.$store.state.instance.quotePosting },
translationEnabled: function () { return this.$store.state.instance.translationEnabled },
quotePosting: function () { return this.$store.state.instance.quotePosting },
whoToFollow: function () { return this.$store.state.instance.suggestionsEnabled },
mediaProxy: function () { return this.$store.state.instance.mediaProxyAvailable },
minimalScopesMode: function () { return this.$store.state.instance.minimalScopesMode },