Make Admin => Config readonly #189

This commit is contained in:
the-djmaze 2022-01-18 16:46:58 +01:00
parent 87548632a9
commit 43a1196dbb

View file

@ -9,10 +9,10 @@
<td data-bind="text: name"></td>
<td>
<!-- ko if: 'checkbox' == type -->
<input type="checkbox" data-bind="attr: {name: key, checked: value}"/>
<input type="checkbox" data-bind="attr: {name: key, checked: value}" readonly=""/>
<!-- /ko -->
<!-- ko if: 'checkbox' != type -->
<input data-bind="attr: {name: key, type: type}, value: value"/>
<input data-bind="attr: {name: key, type: type}, value: value" readonly=""/>
<!-- /ko -->
<em data-bind="text: comment, visible: comment"></em>
</td>