7983-testToMaster_2438 #718

Merged
alexm merged 353 commits from 7983-testToMaster_2438 into master 2024-09-17 05:39:39 +00:00
1 changed files with 5 additions and 1 deletions
Showing only changes of commit b59f8374b3 - Show all commits

View File

@ -9,6 +9,10 @@ const $props = defineProps({
type: Boolean, type: Boolean,
default: false, default: false,
}, },
showEvent: {
type: Boolean,
default: true,
},
}); });
const { t } = useI18n(); const { t } = useI18n();
@ -107,7 +111,7 @@ watch(
isPopupOpen = false; isPopupOpen = false;
" "
/> />
<QIcon name="event" class="cursor-pointer" /> <QIcon v-if="showEvent" name="event" class="cursor-pointer" />
</template> </template>
<QMenu <QMenu
transition-show="scale" transition-show="scale"