Work on auto reload and related single property updates. Also bug fix for saving searched sessions.

This commit is contained in:
Scott Idem
2025-09-30 12:05:55 -04:00
parent 53a03f971f
commit 99fe486842
6 changed files with 186 additions and 13 deletions

View File

@@ -478,9 +478,9 @@ export let hide: boolean = true;
{/if}
<div class="flex flex-row gap-1 items-center justify-evenly">
{#if $ae_loc.trusted_access}
{#if $ae_loc.edit_mode}
<div class="flex flex-row flex-wrap gap-1 items-center justify-evenly">
{#if $ae_loc?.trusted_access}
{#if $ae_loc?.edit_mode}
<button
type="button"
on:click={() => {
@@ -505,6 +505,32 @@ export let hide: boolean = true;
Edit Mode?
</button>
{/if}
{#if $ae_loc?.adv_mode}
<button
type="button"
on:click={() => {
$ae_loc.adv_mode = false;
}}
class="btn btn-sm w-full ae_btn_warning"
>
<!-- <span class="fas fa-toggle-on m-1"></span> -->
<span class="fas fa-magic m-1"></span>
Advanced Mode On
</button>
{:else}
<button
type="button"
on:click={() => {
$ae_loc.adv_mode = true;
}}
class="btn btn-sm w-full ae_btn_warning_outlined"
>
<span class="fas fa-toggle-off m-1"></span>
<!-- <span class="fas fa-edit m-1"></span> -->
Advanced Mode?
</button>
{/if}
{/if}
</div>