correct front-end lint

This commit is contained in:
Laurent GAY
2025-07-01 17:42:40 +02:00
parent db728fa913
commit 3432645e74
3 changed files with 5 additions and 3 deletions

View File

@@ -91,7 +91,9 @@ const inputAttrs = computed(() => props.inputAttrs);
// const modalOpened = ref(false);
const prompt = ref<string>(hasInput.value ? inputAttrs.value.value ?? "" : "");
const prompt = ref<string>(
hasInput.value ? (inputAttrs.value.value ?? "") : ""
);
const input = ref();
// https://github.com/oruga-ui/oruga/issues/339