Add isOnline event option to mark event as fully online

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
Thomas Citharel
2021-10-15 15:59:49 +02:00
parent d2ccc21f91
commit 7ecf2e1da0
9 changed files with 52 additions and 10 deletions

View File

@@ -34,6 +34,7 @@
@select="updateSelected"
v-bind="$attrs"
:id="id"
:disabled="disabled"
>
<template #default="{ option }">
<b-icon :icon="option.poiInfos.poiIcon.icon" />
@@ -156,6 +157,7 @@ export default class FullAddressAutoComplete extends Mixins(
) {
@Prop({ required: false, default: "" }) label!: string;
@Prop({ required: false }) userTimezone!: string;
@Prop({ required: false, default: false, type: Boolean }) disabled!: boolean;
addressModalActive = false;