diff options
| author | shpuld <shp@cock.li> | 2018-12-28 21:44:09 +0200 |
|---|---|---|
| committer | shpuld <shp@cock.li> | 2018-12-28 21:44:09 +0200 |
| commit | 650655709dd617a558709ffbf8911f05f7c17267 (patch) | |
| tree | 5d87472d287b93bc845e442c91006070ef88f85d /src/boot | |
| parent | 85c058e95c04245dacf3ffb6b45a6eceb3253e7b (diff) | |
| parent | a86b80b0544ca93a1b59ff521fd9b1e8bbc3f8c9 (diff) | |
fix conflict in user card content
Diffstat (limited to 'src/boot')
| -rw-r--r-- | src/boot/after_store.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/boot/after_store.js b/src/boot/after_store.js index 5b9e5c96..6e87d5f6 100644 --- a/src/boot/after_store.js +++ b/src/boot/after_store.js @@ -72,6 +72,7 @@ const afterStoreSetup = ({ store, i18n }) => { var scopeCopy = (config.scopeCopy) var subjectLineBehavior = (config.subjectLineBehavior) var alwaysShowSubjectInput = (config.alwaysShowSubjectInput) + var noAttachmentLinks = (config.noAttachmentLinks) store.dispatch('setInstanceOption', { name: 'theme', value: theme }) store.dispatch('setInstanceOption', { name: 'background', value: background }) @@ -90,6 +91,8 @@ const afterStoreSetup = ({ store, i18n }) => { store.dispatch('setInstanceOption', { name: 'scopeCopy', value: scopeCopy }) store.dispatch('setInstanceOption', { name: 'subjectLineBehavior', value: subjectLineBehavior }) store.dispatch('setInstanceOption', { name: 'alwaysShowSubjectInput', value: alwaysShowSubjectInput }) + store.dispatch('setInstanceOption', { name: 'noAttachmentLinks', value: noAttachmentLinks }) + if (chatDisabled) { store.dispatch('disableChat') } |
