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

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVincent Petry <vincent@nextcloud.com>2022-08-11 15:33:34 +0300
committerVincent Petry <vincent@nextcloud.com>2022-08-25 09:37:46 +0300
commit708018795863999b674d1e3e900313785893d6a8 (patch)
treeb961cae846572fb1baf8d4ad6cfb8d54f56cf234 /apps/oauth2/src/components/OAuthItem.vue
parent405b5de6fa408841fb242d77ca7d37c1fb87efa4 (diff)
Bump @nextcloud/vue to 6.0.0-beta.3 and related
Update @nextcloud/vue to 6.0.0-beta.3 Update vue and vue-template-compiler to 2.7.8 Update calendar-availability-vue to 0.5.0-beta.1 to fix conflicts. Signed-off-by: Vincent Petry <vincent@nextcloud.com>
Diffstat (limited to 'apps/oauth2/src/components/OAuthItem.vue')
-rw-r--r--apps/oauth2/src/components/OAuthItem.vue8
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/oauth2/src/components/OAuthItem.vue b/apps/oauth2/src/components/OAuthItem.vue
index 6f4c5ad0f7e..8a98d8dab29 100644
--- a/apps/oauth2/src/components/OAuthItem.vue
+++ b/apps/oauth2/src/components/OAuthItem.vue
@@ -42,14 +42,14 @@
</table>
</td>
<td class="action-column">
- <Button type="tertiary-no-background"
+ <ButtonVue type="tertiary-no-background"
:aria-label="t('oauth2', 'Delete')"
@click="$emit('delete', id)">
<template #icon>
<Delete :size="20"
:title="t('oauth2', 'Delete')" />
</template>
- </Button>
+ </ButtonVue>
</td>
</tr>
</template>
@@ -57,13 +57,13 @@
<script>
import Delete from 'vue-material-design-icons/Delete'
-import Button from '@nextcloud/vue/dist/Components/Button'
+import ButtonVue from '@nextcloud/vue/dist/Components/ButtonVue'
export default {
name: 'OAuthItem',
components: {
Delete,
- Button,
+ ButtonVue,
},
props: {
client: {