fixed flex box

This commit is contained in:
polarDefender 2024-05-27 08:58:46 -07:00
parent c96c340a43
commit 1cb837a523
5 changed files with 49 additions and 32 deletions

View file

@ -6,4 +6,14 @@ $(() => {
$("#close-question").click(() => {
$("#question-content").hide();
});
$("#automate").click(() => {
$('[data-group="service"]').prop("checked", false);
$("#automate").prop("checked", true);
});
$("#manual").click(() => {
$('[data-group="service"]').prop("checked", false);
$("#manual").prop("checked", true);
});
});