We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7520081 commit fe8cb7cCopy full SHA for fe8cb7c
resources/js/Components/MismatchRow.vue
@@ -108,8 +108,6 @@
108
109
<script setup lang="ts">
110
import { formatISO } from 'date-fns';
111
-
112
-import type { PropType } from 'vue';
113
import { computed, ref } from 'vue';
114
import { CdxButton, CdxDialog, CdxSelect } from "@wikimedia/codex";
115
import { MenuItem } from '@wmde/wikit-vue-components/dist/components/MenuItem';
@@ -167,7 +165,6 @@ const uploadInfoDescription = computed<string>(() => {
167
165
return shouldTruncate.value ? text.substring(0, truncateLength) + '...' : text;
168
166
});
169
170
-const decision = statusOptions[props.mismatch.review_status];
171
const reviewStatus = String(props.mismatch.review_status);
172
const fullDescriptionDialog = ref(false);
173
0 commit comments