This commit is contained in:
Henry Jameson 2020-11-01 16:44:57 +02:00
parent 994b49ddfe
commit 8b1213ea1e
7 changed files with 41 additions and 40 deletions

View file

@ -37,7 +37,7 @@ export default {
GlobalNoticeList GlobalNoticeList
}, },
data: () => ({ data: () => ({
mobileActivePanel: 'timeline', mobileActivePanel: 'timeline'
}), }),
created () { created () {
// Load the locale from the storage // Load the locale from the storage

View file

@ -69,7 +69,7 @@ export default {
hideSitename () { return this.$store.state.instance.hideSitename }, hideSitename () { return this.$store.state.instance.hideSitename },
logoLeft () { return this.$store.state.instance.logoLeft }, logoLeft () { return this.$store.state.instance.logoLeft },
currentUser () { return this.$store.state.users.currentUser }, currentUser () { return this.$store.state.users.currentUser },
privateMode () { return this.$store.state.instance.private }, privateMode () { return this.$store.state.instance.private }
}, },
methods: { methods: {
scrollToTop () { scrollToTop () {
@ -84,6 +84,6 @@ export default {
}, },
openSettingsModal () { openSettingsModal () {
this.$store.dispatch('openSettingsModal') this.$store.dispatch('openSettingsModal')
}, }
} }
} }

View file

@ -87,7 +87,8 @@
</a> </a>
<div <div
v-show="previewLoading" v-show="previewLoading"
class="preview-spinner"> class="preview-spinner"
>
<FAIcon <FAIcon
class="fa-old-padding" class="fa-old-padding"
spin spin

View file

@ -11,8 +11,8 @@
> >
<div class="reaction-picker-filter"> <div class="reaction-picker-filter">
<input <input
size="1"
v-model="filterWord" v-model="filterWord"
size="1"
:placeholder="$t('emoji.search_emoji')" :placeholder="$t('emoji.search_emoji')"
> >
</div> </div>

View file

@ -1,5 +1,5 @@
<template> <template>
<div <div
class="SearchBar" class="SearchBar"
:class="{ '-expanded': !hidden }" :class="{ '-expanded': !hidden }"
> >