refactor: refs #8440 update required and deletable attribute checks to use 'in' operator for originalAttrs
gitea/salix-front/pipeline/pr-dev There was a failure building this commit
Details
gitea/salix-front/pipeline/pr-dev There was a failure building this commit
Details
This commit is contained in:
parent
0619f21cf5
commit
ef0ac17d88
|
@ -148,7 +148,7 @@ function fetchData([data]) {
|
|||
v-model="newNote.observationTypeFk"
|
||||
option-label="description"
|
||||
style="flex: 0.15"
|
||||
:required="Object.keys(originalAttrs).includes('required')"
|
||||
:required="'required' in originalAttrs"
|
||||
@keyup.enter.stop="insert"
|
||||
/>
|
||||
<VnInput
|
||||
|
@ -158,7 +158,7 @@ function fetchData([data]) {
|
|||
filled
|
||||
autogrow
|
||||
@keyup.enter.stop="handleClick"
|
||||
:required="Object.keys(originalAttrs).includes('required')"
|
||||
:required="'required' in originalAttrs"
|
||||
clearable
|
||||
>
|
||||
<template #append>
|
||||
|
@ -230,9 +230,7 @@ function fetchData([data]) {
|
|||
<span v-text="toDateHourMin(note.created)" />
|
||||
<div>
|
||||
<QIcon
|
||||
v-if="
|
||||
Object.keys(originalAttrs).includes('deletable')
|
||||
"
|
||||
v-if="'deletable' in originalAttrs"
|
||||
name="delete"
|
||||
size="sm"
|
||||
class="cursor-pointer"
|
||||
|
|
Loading…
Reference in New Issue