Skip to content

Commit

Permalink
convert HelpButton.svelte to 5
Browse files Browse the repository at this point in the history
  • Loading branch information
kjk committed Jun 25, 2024
1 parent 575d25a commit 95af7b4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion frontend/src/gisteditor/HelpButton.svelte
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
<svelte:options runes={true} />

<script>
import Overlay from "../Overlay.svelte";
import { tooltip } from "../actions/tooltip.js";
let showingMenu = false;
let showingMenu = $state(false);
function showMenu() {
showingMenu = !showingMenu;
Expand Down

0 comments on commit 95af7b4

Please sign in to comment.