Skip to content

Commit

Permalink
fix: explicitly hide advanced elements based on cookie (#28)
Browse files Browse the repository at this point in the history
  • Loading branch information
dkaser authored Nov 13, 2024
1 parent 3c02a77 commit 9a9a343
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,8 @@ function requestErase(e) {

if ($.cookie('tailscale_view_mode') == 'advanced') {
$('.advanced').show();
} else {
$('.advanced').hide();
}

$('.advancedview').switchButton({
Expand Down

0 comments on commit 9a9a343

Please sign in to comment.