Skip to content

Commit

Permalink
Merge pull request #449 from tphakala/settings-fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
tphakala authored Feb 11, 2025
2 parents 2eb5594 + ad3f9f8 commit 8361d3f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions views/elements/sidebar.html
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@
<details :open="isRouteActive('/settings')" role="group">
<summary class="flex items-center gap-2" role="menuitem" aria-haspopup="true">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" class="w-5 h-5" aria-hidden="true">
<path d="M17 2.75a.75.75 0 0 0-1.5 0v5.5a.75.75 0 0 0 1.5 0v-5.5ZM17 15.75a.75.75 0 0 0-1.5 0v1.5a.75.75 0 0 0 1.5 0v-1.5ZM3.75 15a.75.75 0 0 1 .75.75v1.5a.75.75 0 0 1-1.5 0v-1.5a.75.75 0 0 1 .75-.75ZM4.5 2.75a.75.75 0 0 0-1.5 0v5.5a.75.75 0 0 0 1.5 0v-5.5ZM10 11a.75.75 0 0 1 .75.75v5.5a.75.75 0 0 1-1.5 0v-5.5A.75.75 0 0 1 10 11ZM10.75 2.75a.75.75 0 0 0-1.5 0v1.5a.75.75 0 0 0 1.5 0v-1.5ZM10 6a2 2 0 1 0 0 4 2 2 0 0 0 0-4ZM3.75 10a2 2 0 1 0 0 4 2 2 0 0 0 0-4ZM16.25 10a2 2 0 1 0 0 4 2 2 0 0 0 0-4Z" />
</svg>
<path fill-rule="evenodd" d="M7.84 1.804A1 1 0 0 1 8.82 1h2.36a1 1 0 0 1 .98.804l.331 1.652a6.993 6.993 0 0 1 1.929 1.115l1.598-.54a1 1 0 0 1 1.186.447l1.18 2.044a1 1 0 0 1-.205 1.251l-1.267 1.113a7.047 7.047 0 0 1 0 2.228l1.267 1.113a1 1 0 0 1 .206 1.25l-1.18 2.045a1 1 0 0 1-1.187.447l-1.598-.54a6.993 6.993 0 0 1-1.929 1.115l-.33 1.652a1 1 0 0 1-.98.804H8.82a1 1 0 0 1-.98-.804l-.331-1.652a6.993 6.993 0 0 1-1.929-1.115l-1.598.54a1 1 0 0 1-1.186-.447l-1.18-2.044a1 1 0 0 1 .205-1.251l1.267-1.114a7.05 7.05 0 0 1 0-2.227L1.821 7.773a1 1 0 0 1-.206-1.25l1.18-2.045a1 1 0 0 1 1.187-.447l1.598.54A6.992 6.992 0 0 1 7.51 3.456l.33-1.652ZM10 13a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z" clip-rule="evenodd" />
</svg>
<span>Settings</span>
</summary>
<ul role="menu" aria-label="Settings submenu">
Expand Down
2 changes: 1 addition & 1 deletion views/settings/filtersSettings.html
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@
<span class="label-text">Dog Bark Expire Time (Minutes)</span>
<span class="help-icon" @mouseenter="showTooltip = 'dogBarkExpire'" @mouseleave="showTooltip = null"></span>
</label>
<input type="number" x-model="dogBarkFilter.remember" min="0" class="input input-bordered input-sm w-full" />
<input type="number" id="dogBarkFilterRemember" name="realtime.dogbarkfilter.remember" x-model="dogBarkFilter.remember" min="0" class="input input-bordered input-sm w-full" />
<div x-show="showTooltip === 'dogBarkExpire'" x-cloak class="tooltip">
Set how long to remember a detected dog bark
</div>
Expand Down

0 comments on commit 8361d3f

Please sign in to comment.