Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/CallView/shared/EmptyCallView.vue')
-rw-r--r--src/components/CallView/shared/EmptyCallView.vue8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/components/CallView/shared/EmptyCallView.vue b/src/components/CallView/shared/EmptyCallView.vue
index f1e731b3e..69a1ea216 100644
--- a/src/components/CallView/shared/EmptyCallView.vue
+++ b/src/components/CallView/shared/EmptyCallView.vue
@@ -27,16 +27,16 @@
<p v-if="message" class="emptycontent-additional">
{{ message }}
</p>
- <ButtonVue v-if="showLink"
+ <NcButton v-if="showLink"
type="primary"
@click.stop.prevent="copyLinkToConversation">
{{ t('spreed', 'Copy link') }}
- </ButtonVue>
+ </NcButton>
</div>
</template>
<script>
-import ButtonVue from '@nextcloud/vue/dist/Components/ButtonVue.js'
+import NcButton from '@nextcloud/vue/dist/Components/NcButton.js'
import { showError, showSuccess } from '@nextcloud/dialogs'
import { generateUrl } from '@nextcloud/router'
import { CONVERSATION, PARTICIPANT } from '../../../constants.js'
@@ -46,7 +46,7 @@ export default {
name: 'EmptyCallView',
components: {
- ButtonVue,
+ NcButton,
},
props: {