fixups to the rebase
[?]
Mar 18, 2021, 8:08 PM
MTZKFONQJNZATSZXPXCVRRIFMVPFUVPFXDKT4GE243TS5YHUOI6QCDependencies
- [2]
SWXX2O4AUpdate boostrap to latest 4.3.1 - [3]
QUMWPGCUAdd flake configuration to the web interface - [4]
TQVKZQUGUse the REST API in the web interface for editing jobsets - [5]
OX6NYJDVSplit viewing and editing a jobset
Change contents
- replacement in src/root/edit-jobset.tt at line 97
<label class="btn btn-secondary[% IF jobset.type == 1 %] active[% END %]"><input type="radio" id="type-flake" name="enabled" value="1" [% IF jobset.type == 1 %]checked[% END %]>Flake</button><label id="type-flake" class="btn btn-secondary[% IF jobset.type == 1 %] active[% END %]"><input type="radio" name="type" value="1" [% IF jobset.type == 1 %]checked[% END %]>Flake</button> - replacement in src/root/edit-jobset.tt at line 100
<label class="btn btn-secondary[% IF jobset.type == 0 %] active[% END %]"><input type="radio" id="type-legacy" name="enabled" value="0" [% IF jobset.type == 0 %]checked[% END %]>Legacy</button><label id="type-legacy" class="btn btn-secondary[% IF jobset.type == 0 %] active[% END %]"><input type="radio" name="type" value="0" [% IF jobset.type == 0 %]checked[% END %]>Legacy</button> - replacement in src/root/edit-jobset.tt at line 198
if ($("#type").val() == 0) {if ($("input[type='radio'][name='type']:checked").val() == 0) { - replacement in src/root/edit-jobset.tt at line 207
$("#type-flake").click(function() { update(); });$("#type-legacy").click(function() { update(); });$("input[type='radio'][name='type']").change(function() { update(); });