0
0
Fork 0

feat: refs #7874 required fields banner

This commit is contained in:
Jorge Penadés 2024-09-26 17:19:05 +02:00
parent 11c135e8c4
commit 71201f1007
1 changed files with 4 additions and 3 deletions

View File

@ -42,7 +42,6 @@ async function insert() {
await axios.post($props.url, newBody); await axios.post($props.url, newBody);
await vnPaginateRef.value.fetch(); await vnPaginateRef.value.fetch();
} }
onBeforeRouteLeave((to, from, next) => { onBeforeRouteLeave((to, from, next) => {
if (newNote.text) if (newNote.text)
quasar.dialog({ quasar.dialog({
@ -80,6 +79,8 @@ onBeforeRouteLeave((to, from, next) => {
v-model="newNote.observationTypeFk" v-model="newNote.observationTypeFk"
option-label="description" option-label="description"
style="flex: 0.15; margin-left: 0" style="flex: 0.15; margin-left: 0"
:required="true"
@keyup.enter.stop="insert"
/> />
<VnInput <VnInput
v-model.trim="newNote.text" v-model.trim="newNote.text"
@ -88,9 +89,9 @@ onBeforeRouteLeave((to, from, next) => {
filled filled
size="lg" size="lg"
autogrow autogrow
autofocus @keyup.enter.stop="insert"
@keyup.enter="insert"
clearable clearable
:required="true"
> >
<template #append> <template #append>
<QBtn <QBtn