From e25f7664e08e9a3bb787daf054b70746a6aafcdc Mon Sep 17 00:00:00 2001 From: John Chilton Date: Tue, 18 Feb 2025 12:23:14 -0500 Subject: [PATCH] Fix one of the vue-tsc errors. --- .../Collections/PairedOrUnpairedListCollectionCreator.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/src/components/Collections/PairedOrUnpairedListCollectionCreator.vue b/client/src/components/Collections/PairedOrUnpairedListCollectionCreator.vue index 2969a3157791..26cca4d71c12 100644 --- a/client/src/components/Collections/PairedOrUnpairedListCollectionCreator.vue +++ b/client/src/components/Collections/PairedOrUnpairedListCollectionCreator.vue @@ -50,6 +50,8 @@ interface Props { mode: "wizard" | "modal"; // in modal mode we need to show buttons and manage pairing components, wizard takes care these details } +const props = defineProps(); + const { gridApi, AgGridVue, onGridReady, theme } = useAgGrid(resize); const { updateIdentifierIfUnchanged } = useUpdateIdentifiersForRemoveExtensions(props); @@ -70,8 +72,6 @@ const emit = defineEmits<{ (e: "input-valid", value: boolean): void; }>(); -const props = defineProps(); - const currentForwardFilter = ref(props.forwardFilter); const currentReverseFilter = ref(props.reverseFilter); const activeElements = ref(props.initialElements);