summaryrefslogtreecommitdiffstats
path: root/src/components/RightSidebar/Participants/ParticipantsTab.vue
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2022-08-18 17:52:32 +0200
committerJoas Schilling <coding@schilljs.com>2022-08-18 17:52:32 +0200
commit02e83a61dc246c3130a6ed8bd2e969996b96d0b8 (patch)
tree0f62a940951a7990793e224009172729f3fae33e /src/components/RightSidebar/Participants/ParticipantsTab.vue
parent5bceccef75416d5f46f66217568e21b440f3dea0 (diff)
Adjust imports
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'src/components/RightSidebar/Participants/ParticipantsTab.vue')
-rw-r--r--src/components/RightSidebar/Participants/ParticipantsTab.vue6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/components/RightSidebar/Participants/ParticipantsTab.vue b/src/components/RightSidebar/Participants/ParticipantsTab.vue
index a8f56b0fa..d45c32462 100644
--- a/src/components/RightSidebar/Participants/ParticipantsTab.vue
+++ b/src/components/RightSidebar/Participants/ParticipantsTab.vue
@@ -27,7 +27,7 @@
:is-searching="isSearching"
@input="handleInput"
@abort-search="abortSearch" />
- <AppNavigationCaption v-if="isSearching && canAdd"
+ <NcAppNavigationCaption v-if="isSearching && canAdd"
:title="t('spreed', 'Participants')" />
<CurrentParticipants :search-text="searchText"
:participants-initialised="participantsInitialised" />
@@ -50,14 +50,14 @@ import { addParticipant } from '../../../services/participantsService.js'
import { loadState } from '@nextcloud/initial-state'
import CancelableRequest from '../../../utils/cancelableRequest.js'
import { showError } from '@nextcloud/dialogs'
-import AppNavigationCaption from '@nextcloud/vue/dist/Components/AppNavigationCaption.js'
+import NcAppNavigationCaption from '@nextcloud/vue/dist/Components/NcAppNavigationCaption.js'
import ParticipantsSearchResults from './ParticipantsSearchResults/ParticipantsSearchResults.vue'
import getParticipants from '../../../mixins/getParticipants.js'
export default {
name: 'ParticipantsTab',
components: {
- AppNavigationCaption,
+ NcAppNavigationCaption,
CurrentParticipants,
SearchBox,
ParticipantsSearchResults,