web/admin: enable blueprint instances by default

Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
Jens Langhammer 2022-08-23 18:39:22 +02:00
parent fd461d9a00
commit e70fcd1a6f
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ export class BlueprintForm extends ModelForm<BlueprintInstance, string> {
<input
type="checkbox"
class="pf-c-check__input"
?checked=${first(this.instance?.enabled, false)}
?checked=${first(this.instance?.enabled, true)}
/>
<label class="pf-c-check__label"> ${t`Enabled`} </label>
</div>