refactor(client): Export default reaction setting and use it
This commit is contained in:
parent
d57d55a226
commit
729116c9e5
|
@ -23,6 +23,7 @@ import MkButton from '../../components/ui/button.vue';
|
|||
import MkReactionPicker from '../../components/reaction-picker.vue';
|
||||
import i18n from '../../i18n';
|
||||
import { emojiRegexWithCustom } from '../../../misc/emoji-regex';
|
||||
import { defaultSettings } from '../../store';
|
||||
|
||||
export default Vue.extend({
|
||||
i18n,
|
||||
|
@ -70,7 +71,7 @@ export default Vue.extend({
|
|||
},
|
||||
|
||||
setDefault() {
|
||||
this.reactions = '👍❤😆🤔😮🎉💢😥😇🍮';
|
||||
this.reactions = defaultSettings.reactions;
|
||||
},
|
||||
|
||||
async chooseEmoji(ev) {
|
||||
|
|
|
@ -3,7 +3,7 @@ import createPersistedState from 'vuex-persistedstate';
|
|||
import * as nestedProperty from 'nested-property';
|
||||
import { apiUrl } from './config';
|
||||
|
||||
const defaultSettings = {
|
||||
export const defaultSettings = {
|
||||
tutorial: 0,
|
||||
keepCw: false,
|
||||
showFullAcct: false,
|
||||
|
|
Loading…
Reference in New Issue