This commit is contained in:
2023-01-08 19:33:51 +00:00
parent 44d0262458
commit 88528988c9

View File

@@ -328,7 +328,7 @@
<!-- MBI V7 LICENSE ITEM -->
<v-col cols="12" sm="6" lg="4" xl="3">
<v-row dense no-gutters>
<v-checkbox
<v-checkbox
class="mr-2"
ref="mbi"
v-model="obj.mbi"
@@ -947,6 +947,18 @@
@input="fieldValueChanged('dbId')"
></v-text-field>
</v-col>
<v-col cols="12" sm="6" lg="4" xl="3">
<v-checkbox
ref="trialMode"
v-model="obj.trialMode"
dense
:readonly="formState.readOnly"
:label="$sock.t('TrialLicenseRequest')"
data-cy="trialMode"
:error-messages="form().serverErrors(this, 'trialMode')"
@change="fieldValueChanged('trialMode')"
></v-checkbox>
</v-col>
</template>
<!-- RavenSubscription -->
<template v-if="obj.pGroup == 3">
@@ -1010,6 +1022,17 @@
@input="fieldValueChanged('dbId')"
></v-text-field>
</v-col>
<v-checkbox
ref="trialMode"
v-model="obj.trialMode"
dense
:readonly="formState.readOnly"
:label="$sock.t('TrialLicenseRequest')"
data-cy="trialMode"
:error-messages="form().serverErrors(this, 'trialMode')"
@change="fieldValueChanged('trialMode')"
></v-checkbox>
</template>
<v-col cols="12" sm="6" lg="4" xl="3">
@@ -1645,7 +1668,8 @@ async function fetchTranslatedText() {
"LicenseExpiration",
"ProductGroup",
"Customer",
"DatabaseID"
"DatabaseID",
"TrialLicenseRequest"
]);
}
//////////////////////