diff options
| author | Sean King <seanking2919@protonmail.com> | 2022-08-08 07:32:38 -0600 |
|---|---|---|
| committer | Sean King <seanking2919@protonmail.com> | 2022-08-08 07:32:38 -0600 |
| commit | 325930eecb4943bb50344159646a7c62b4bf10b3 (patch) | |
| tree | c28dd669ccdf7416a48cfded0a7b581225e54c5d /src/components/conversation | |
| parent | 04e62df377fdd2ea563f58dcd23ea8048fc1c140 (diff) | |
| parent | 068139b27e00137cb1423c0a7751572c54a52148 (diff) | |
Fix merge conflicts
Diffstat (limited to 'src/components/conversation')
| -rw-r--r-- | src/components/conversation/conversation.js | 6 | ||||
| -rw-r--r-- | src/components/conversation/conversation.vue | 8 |
2 files changed, 13 insertions, 1 deletions
diff --git a/src/components/conversation/conversation.js b/src/components/conversation/conversation.js index 47509e86..85e6d8ad 100644 --- a/src/components/conversation/conversation.js +++ b/src/components/conversation/conversation.js @@ -3,6 +3,8 @@ import Status from '../status/status.vue' import ThreadTree from '../thread_tree/thread_tree.vue' import { WSConnectionStatus } from '../../services/api/api.service.js' import { mapGetters, mapState } from 'vuex' +import QuickFilterSettings from '../quick_filter_settings/quick_filter_settings.vue' +import QuickViewSettings from '../quick_view_settings/quick_view_settings.vue' import { library } from '@fortawesome/fontawesome-svg-core' import { @@ -352,7 +354,9 @@ const conversation = { }, components: { Status, - ThreadTree + ThreadTree, + QuickFilterSettings, + QuickViewSettings }, watch: { statusId (newVal, oldVal) { diff --git a/src/components/conversation/conversation.vue b/src/components/conversation/conversation.vue index 1adbe250..61832566 100644 --- a/src/components/conversation/conversation.vue +++ b/src/components/conversation/conversation.vue @@ -17,6 +17,14 @@ > {{ $t('timeline.collapse') }} </button> + <QuickFilterSettings + v-if="!collapsable" + :conversation="true" + /> + <QuickViewSettings + v-if="!collapsable" + :conversation="true" + /> </div> <div class="conversation-body panel-body"> <div |
