summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2020-09-30 13:53:08 +0200
committerJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2020-09-30 13:53:08 +0200
commit40adc211194f5f9b763ddcebe7ea75a83cbe9066 (patch)
tree5cd18aa205de26f4c6c978521f0621ecdf7c36af
parent0b50ef2e9ac5f4761701655478c482309fa0f748 (diff)
Fix REV requirements
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
-rw-r--r--src/components/Properties/PropertyRev.vue5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/components/Properties/PropertyRev.vue b/src/components/Properties/PropertyRev.vue
index 321ef69c..4841e346 100644
--- a/src/components/Properties/PropertyRev.vue
+++ b/src/components/Properties/PropertyRev.vue
@@ -27,16 +27,13 @@
</template>
<script>
-import { VCardTime } from 'ical.js'
-
export default {
name: 'PropertyRev',
props: {
value: {
- type: VCardTime,
+ type: Object,
required: true,
- default: null,
},
},