enable save button when validation fails

This commit is contained in:
liamcottle
2025-02-16 04:06:09 +13:00
parent 2ff8b093ea
commit 1cea505396

View File

@@ -245,11 +245,13 @@ export default {
} catch(e) { } catch(e) {
console.log(e); console.log(e);
alert("Failed to save settings!"); alert("Failed to save settings!");
} } finally {
// show loading // show loading
this.isSaving = false; this.isSaving = false;
}
}, },
bytesToHex(uint8Array) { bytesToHex(uint8Array) {
return Utils.bytesToHex(uint8Array); return Utils.bytesToHex(uint8Array);