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 d25e0de commit 0f1b7e8
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions resources/js/Components/MismatchRow.vue
Original file line number Diff line number Diff line change
Expand Up @@ -192,6 +192,14 @@ export default defineComponent({
}
}
});
const reviewStatus = ref(String(props.mismatch.review_status));

Check failure on line 196 in resources/js/Components/MismatchRow.vue

View workflow job for this annotation

GitHub Actions / js-lint

'reviewStatus' is assigned a value but never used
const fullDescriptionDialog = ref(false);
function showDialog(e: Event) {

Check failure on line 199 in resources/js/Components/MismatchRow.vue

View workflow job for this annotation

GitHub Actions / js-lint

'showDialog' is defined but never used
e.preventDefault();
fullDescriptionDialog.value = true;
}
</script>

<style lang="scss">
Expand Down

0 comments on commit 0f1b7e8

Please sign in to comment.