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 9cef482 commit a7781cdCopy full SHA for a7781cd
resources/js/Components/MismatchRow.vue
@@ -165,7 +165,7 @@ const uploadInfoDescription = computed<string>(() => {
165
return shouldTruncate.value ? text.substring(0, truncateLength) + '...' : text;
166
});
167
168
-const reviewStatus = String(props.mismatch.review_status);
+const reviewStatus = ref(String(props.mismatch.review_status));
169
const fullDescriptionDialog = ref(false);
170
171
function showDialog(e: Event) {
0 commit comments