Skip to content

Commit

Permalink
Convert reviewStatus to ref
Browse files Browse the repository at this point in the history
  • Loading branch information
guergana committed Jan 9, 2024
1 parent fda36f8 commit 829ca1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/js/Components/MismatchRow.vue
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ const uploadInfoDescription = computed<string>(() => {
return shouldTruncate.value ? text.substring(0, truncateLength) + '...' : text;
});
const reviewStatus = String(props.mismatch.review_status);
const reviewStatus = ref(String(props.mismatch.review_status));
const fullDescriptionDialog = ref(false);
function showDialog(e: Event) {
Expand Down

0 comments on commit 829ca1a

Please sign in to comment.