Skip to content

Commit

Permalink
webapp: Fix lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
tbnobody committed Aug 8, 2023
1 parent 3d67d93 commit ac4ddbe
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion webapp/src/components/BootstrapAlert.vue
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,11 @@ export default defineComponent({
_countDownTimeout = undefined;
};
const countDown = ref(parseCountDown(props.modelValue));
var countDown = ref();
watch(() => props.modelValue, () => {
countDown.value = parseCountDown(props.modelValue);
});
const isAlertVisible = computed(() => props.modelValue || props.show);
onBeforeUnmount(() => {
Expand Down

0 comments on commit ac4ddbe

Please sign in to comment.