diff --git a/apps/web/components/molecules/festival-event/logistic/InitFaInquiryDialogCard.vue b/apps/web/components/molecules/festival-event/logistic/InitFaInquiryDialogCard.vue
index 0c7683cab0..aa90332433 100644
--- a/apps/web/components/molecules/festival-event/logistic/InitFaInquiryDialogCard.vue
+++ b/apps/web/components/molecules/festival-event/logistic/InitFaInquiryDialogCard.vue
@@ -38,7 +38,7 @@ const period = computed(() => ({
}));
const isPeriodInvalid = computed(() => !Period.isValid(period.value));
const cantAddInquiry = computed(
- () => !gear.value && quantity.value <= 0,
+ () => !gear.value || quantity.value <= 0,
);
const cantInitInquiry = computed(
() => cantAddInquiry.value || isPeriodInvalid.value,
@@ -66,3 +66,9 @@ const initInquiry = () => {
end.value = configurationStore.eventStartDate;
};
+
+
diff --git a/apps/web/components/molecules/help/BugReportDialogCard.vue b/apps/web/components/molecules/help/BugReportDialogCard.vue
index 6e18248fe6..04de63be73 100644
--- a/apps/web/components/molecules/help/BugReportDialogCard.vue
+++ b/apps/web/components/molecules/help/BugReportDialogCard.vue
@@ -16,25 +16,28 @@
@@ -91,6 +94,10 @@ const copyIssueTemplate = async () => {