This commit is contained in:
2023-01-10 17:18:58 +00:00
parent 74b41088f1
commit 09f104bb83

View File

@@ -197,6 +197,19 @@
></v-checkbox>
</v-col>
<v-col cols="12" sm="6" lg="4" xl="3">
<v-checkbox
ref="notificationSent"
v-model="obj.notificationSent"
dense
:readonly="formState.readOnly"
:label="$sock.t('NotificationSent')"
data-cy="notificationSent"
:error-messages="form().serverErrors(this, 'notificationSent')"
@change="fieldValueChanged('notificationSent')"
></v-checkbox>
</v-col>
<template v-if="obj.pGroup == 0">
<v-col cols="12">
<div class="text-h1 error--text">
@@ -1137,10 +1150,11 @@ export default {
dbId: null,
licenseExpire: null, //what is is in v8, "lockdate" in v7
maintenanceExpire: null,
notificationSent: false,
wiki: null,
tags: [],
//dto only props
trialMode: false, //v8
//dto only props
customerUsers: 250,
maxDataGB: 20,
users: 1,
@@ -1683,7 +1697,8 @@ async function fetchTranslatedText() {
"Customer",
"DatabaseID",
"TrialLicenseRequest",
"LicenseTrialMode"
"LicenseTrialMode",
"NotificationSent"
]);
}
//////////////////////