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