aboutsummaryrefslogtreecommitdiff
path: root/front-end/src/components
diff options
context:
space:
mode:
authorLibravatar vnugent <public@vaughnnugent.com>2024-03-12 22:05:16 -0400
committerLibravatar vnugent <public@vaughnnugent.com>2024-03-12 22:05:16 -0400
commit85a1e5b7cc5c99e97a2d4e99bbceb0d2139742ff (patch)
tree6efc9753ad46f3b280db86ae5acad1c78089cf7b /front-end/src/components
parent748cdbf4880d830fd794e92856e8c35a46e4f884 (diff)
ci: exciting bare-metal build process, os support, smaller packages
Diffstat (limited to 'front-end/src/components')
-rw-r--r--front-end/src/components/Boomarks/AddOrUpdateForm.vue15
-rw-r--r--front-end/src/components/Settings/PkiSettings.vue5
2 files changed, 14 insertions, 6 deletions
diff --git a/front-end/src/components/Boomarks/AddOrUpdateForm.vue b/front-end/src/components/Boomarks/AddOrUpdateForm.vue
index 59af737..0370e0c 100644
--- a/front-end/src/components/Boomarks/AddOrUpdateForm.vue
+++ b/front-end/src/components/Boomarks/AddOrUpdateForm.vue
@@ -40,7 +40,7 @@ const execLookup = async () => {
v$.value.Description.$dirty = true;
}
- if(keywords){
+ if(!isEmpty(keywords)){
v$.value.Tags.$model = keywords;
v$.value.Tags.$dirty = true;
}
@@ -68,8 +68,13 @@ const showSearchButton = computed(() => lookup.isSupported && !isEmpty(v$.value.
:class="{'dirty': v$.Url.$dirty, 'error': v$.Url.$invalid}" required>
<div class="">
- <button :disabled="!showSearchButton || waiting" @click.prevent="execLookup"
- class="btn blue search-btn">
+ <button
+ type="button"
+ :disabled="!showSearchButton || waiting"
+ @click.self.prevent="execLookup"
+ id="search-btn"
+ class="btn blue search-btn"
+ >
<svg class="w-4 h-4" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none"
viewBox="0 0 20 20">
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
@@ -98,8 +103,8 @@ const showSearchButton = computed(() => lookup.isSupported && !isEmpty(v$.value.
</fieldset>
<div class="flex justify-end">
- <button type="submit" class="btn blue">
- Submit
+ <button id="save-button" type="submit" form="bm-add-or-update-form" class="btn blue">
+ Save
</button>
</div>
</form>
diff --git a/front-end/src/components/Settings/PkiSettings.vue b/front-end/src/components/Settings/PkiSettings.vue
index dfa4cad..885b2cb 100644
--- a/front-end/src/components/Settings/PkiSettings.vue
+++ b/front-end/src/components/Settings/PkiSettings.vue
@@ -32,6 +32,8 @@ const removeKey = async (key: PkiPublicKey) => {
title: 'Key Removed',
text: `${key.kid} has been successfully removed`
})
+
+ store.mfaRefreshMethods()
})
}
@@ -117,7 +119,8 @@ const onAddKey = async () => {
text: result
})
- hideAddKeyDialog()
+ hideAddKeyDialog();
+ store.mfaRefreshMethods();
})
}