Skip to content

Commit

Permalink
Update @nextcloud/vue to 6.0.0-beta3
Browse files Browse the repository at this point in the history
Signed-off-by: Vincent Petry <vincent@nextcloud.com>
  • Loading branch information
PVince81 committed Aug 22, 2022
1 parent aacc0f1 commit e88aabd
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
16 changes: 8 additions & 8 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
"@nextcloud/browserslist-config": "^2.2.0",
"@nextcloud/eslint-plugin": "^2.0.0",
"@nextcloud/l10n": "^1.4.1",
"@nextcloud/vue": "^6.0.0-beta.1",
"@nextcloud/vue": "^6.0.0-beta.3",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.0.6",
Expand Down
8 changes: 4 additions & 4 deletions src/CalendarAvailability.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<div class="availability-slot-group">
<template v-for="(slot, idx) in day.slots">
<div :key="`slot-${day.id}-${idx}`" class="availability-slot">
<DatetimePicker
<NcDatetimePicker
v-model="slot.start"
@change="onChangeSlots"
type="time"
Expand All @@ -17,7 +17,7 @@
<span class="to-text">
{{ l10nTo }}
</span>
<DatetimePicker
<NcDatetimePicker
v-model="slot.end"
@change="onChangeSlots"
type="time"
Expand Down Expand Up @@ -45,13 +45,13 @@
</template>

<script>
import DatetimePicker from '@nextcloud/vue/dist/Components/DatetimePicker'
import NcDatetimePicker from '@nextcloud/vue/dist/Components/DatetimePicker'
import { getFirstDay } from '@nextcloud/l10n'
export default {
name: 'CalendarAvailability',
components: {
DatetimePicker,
NcDatetimePicker,
},
props: {
slots: {
Expand Down

0 comments on commit e88aabd

Please sign in to comment.