diff --git a/src/components/button/MainButton.vue b/src/components/button/MainButton.vue
index b4935192..90061843 100644
--- a/src/components/button/MainButton.vue
+++ b/src/components/button/MainButton.vue
@@ -5,7 +5,7 @@ defineEmits<{
(e: 'click', v: MouseEvent): void;
}>();
defineProps<{
- icon: string;
+ icon?: string;
color: string;
iconOnly?: boolean;
solid?: boolean;
@@ -30,7 +30,7 @@ defineProps<{
type="button"
>
-
+
diff --git a/src/components/shared/SelectInput.vue b/src/components/shared/SelectInput.vue
index b66343de..0cfea29c 100644
--- a/src/components/shared/SelectInput.vue
+++ b/src/components/shared/SelectInput.vue
@@ -3,7 +3,7 @@ import { onMounted, ref, watch } from 'vue';
import { selectFilterOptionRefMod } from 'src/stores/utils';
import { QSelect } from 'quasar';
-const model = defineModel();
+const model = defineModel | null>();
const options = ref[]>([]);
let defaultFilter: (
@@ -91,6 +91,10 @@ watch(
"
:rules
>
+
+
+
+