Skip to content

Commit a7781cd

Browse files
committed
Convert reviewStatus to ref
1 parent 9cef482 commit a7781cd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

resources/js/Components/MismatchRow.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ const uploadInfoDescription = computed<string>(() => {
165165
return shouldTruncate.value ? text.substring(0, truncateLength) + '...' : text;
166166
});
167167
168-
const reviewStatus = String(props.mismatch.review_status);
168+
const reviewStatus = ref(String(props.mismatch.review_status));
169169
const fullDescriptionDialog = ref(false);
170170
171171
function showDialog(e: Event) {

0 commit comments

Comments
 (0)