diff options
author | Vincent Petry <vincent@nextcloud.com> | 2022-08-11 14:33:34 +0200 |
---|---|---|
committer | Vincent Petry <vincent@nextcloud.com> | 2022-08-25 08:37:46 +0200 |
commit | 708018795863999b674d1e3e900313785893d6a8 (patch) | |
tree | b961cae846572fb1baf8d4ad6cfb8d54f56cf234 /apps/oauth2 | |
parent | 405b5de6fa408841fb242d77ca7d37c1fb87efa4 (diff) | |
download | nextcloud-server-708018795863999b674d1e3e900313785893d6a8.tar.gz nextcloud-server-708018795863999b674d1e3e900313785893d6a8.zip |
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')
-rw-r--r-- | apps/oauth2/src/App.vue | 8 | ||||
-rw-r--r-- | apps/oauth2/src/components/OAuthItem.vue | 8 |
2 files changed, 8 insertions, 8 deletions
diff --git a/apps/oauth2/src/App.vue b/apps/oauth2/src/App.vue index 3636a532ce1..ba374fcc21c 100644 --- a/apps/oauth2/src/App.vue +++ b/apps/oauth2/src/App.vue @@ -54,9 +54,9 @@ type="url" name="redirectUri" :placeholder="t('oauth2', 'Redirection URI')"> - <Button class="inline-button"> + <ButtonVue class="inline-button"> {{ t('oauth2', 'Add') }} - </Button> + </ButtonVue> </form> </SettingsSection> </template> @@ -67,7 +67,7 @@ import OAuthItem from './components/OAuthItem' import { generateUrl } from '@nextcloud/router' import { getCapabilities } from '@nextcloud/capabilities' import SettingsSection from '@nextcloud/vue/dist/Components/SettingsSection' -import Button from '@nextcloud/vue/dist/Components/Button' +import ButtonVue from '@nextcloud/vue/dist/Components/ButtonVue' import { loadState } from '@nextcloud/initial-state' export default { @@ -75,7 +75,7 @@ export default { components: { OAuthItem, SettingsSection, - Button, + ButtonVue, }, props: { clients: { 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: { |