1
0
Fork 0
mirror of synced 2024-06-26 18:20:43 +12:00

fix: ui boolean default values

This commit is contained in:
Torsten Dittmann 2022-01-24 11:27:46 +01:00
parent 3509c83501
commit d49ef8355d

View file

@ -880,10 +880,10 @@ $logs = $this->getParam('logs', null);
<div class="margin-bottom-large"> <div class="margin-bottom-large">
<template x-if="!(array || required)"> <template x-if="!(array || required)">
<input name="xdefault" class="button switch" type="checkbox" /> <input name="xdefault" class="button switch" type="checkbox" />
</template> </template>
<template x-if="(array || required)"> <template x-if="(array || required)">
<input name="xdefault" class="button switch" type="checkbox" disabled /> <input name="" class="button switch" type="checkbox" disabled />
</template> </template>
&nbsp; Default Value <span class="tooltip" data-tooltip="Whether this attribute is set to true or false on creation"><i class="icon-info-circled"></i></span> &nbsp; Default Value <span class="tooltip" data-tooltip="Whether this attribute is set to true or false on creation"><i class="icon-info-circled"></i></span>
</div> </div>