algorithm select
This commit is contained in:
parent
8586090732
commit
237b5686e4
@ -213,15 +213,15 @@ $("input[name='filterType']").on("change", () => {
|
||||
const openFilterForm = async id => {
|
||||
$("#filterForm").removeClass("submitted");
|
||||
|
||||
HSSelect.getInstance("#formAlgorithm", true).element.setValue([]);
|
||||
const formAlgorithmSelect = HSSelect.getInstance("#formAlgorithm");
|
||||
formAlgorithmSelect.setValue("");
|
||||
|
||||
if (id === -1) {
|
||||
$("#formName").val("");
|
||||
$("#formMatch").val("");
|
||||
$("#formWhitelist").prop("checked", false);
|
||||
$("#formInsensitive").prop("checked", false);
|
||||
}
|
||||
else {
|
||||
} else {
|
||||
const data = await $.ajax({
|
||||
url: `/guild/${guildId}/filters/api?id=${id}`,
|
||||
method: "get"
|
||||
@ -231,8 +231,7 @@ const openFilterForm = async id => {
|
||||
$("#formMatch").val(data.match);
|
||||
$("#formWhitelist").prop("checked", data.is_whitelist);
|
||||
$("#formInsensitive").prop("checked", data.is_insensitive);
|
||||
|
||||
HSSelect.getInstance("#formAlgorithm").setValue(data.algorithm);
|
||||
formAlgorithmSelect.setValue(data.algorithm);
|
||||
}
|
||||
|
||||
HSOverlay.open($("#filterModal").get(0));
|
||||
|
@ -241,7 +241,7 @@
|
||||
<label for="formMatch" class="text-input-label">Match</label>
|
||||
<input type="text" id="formMatch" name="match" class="form-input text-input peer group-[.submitted]:invalid:border-red-500 group-[.submitted]:invalid:ring-red-500" required>
|
||||
<p class="text-input-help block group-[.submitted]:peer-[:invalid]:hidden">
|
||||
The
|
||||
The statement to match against.
|
||||
</p>
|
||||
<p class="mt-2 text-sm text-red-500 hidden group-[.submitted]:peer-[:invalid]:block">
|
||||
Please enter a match.
|
||||
|
Loading…
x
Reference in New Issue
Block a user