This commit is contained in:
2020-10-22 19:24:42 +00:00
parent 35b4cc7f88
commit 9033a4721c

View File

@@ -1,5 +1,5 @@
<template>
<v-row v-if="this.formState.ready">
<v-row v-if="formState.ready">
<v-col>
<v-form ref="form">
<v-row>
@@ -9,7 +9,8 @@
<v-col cols="12" sm="6" lg="4" xl="3">
<v-text-field
v-model="obj.name"
:readonly="this.formState.readOnly"
:readonly="formState.readOnly"
:disabled="formState.readOnly"
:clearable="!formState.readOnly"
@click:clear="fieldValueChanged('name')"
:counter="255"
@@ -27,7 +28,7 @@
<v-col cols="12" sm="6" lg="4" xl="3">
<v-checkbox
v-model="obj.public"
:readonly="this.formState.readOnly"
:readonly="formState.readOnly"
:label="$ay.t('AnyUser')"
ref="public"
@change="fieldValueChanged('public')"