Skip to content

Commit

Permalink
Fix declaration order in settings panel
Browse files Browse the repository at this point in the history
  • Loading branch information
guerler committed Jul 9, 2024
1 parent f5d2357 commit 2c83500
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions client/src/components/Panels/SettingsPanel.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,11 @@ import ActivitySettings from "@/components/ActivityBar/ActivitySettings.vue";
import DelayedInput from "@/components/Common/DelayedInput.vue";
import ActivityPanel from "@/components/Panels/ActivityPanel.vue";
const query = ref("");
const confirmRestore = ref(false);
const activityStore = useActivityStore();
const confirmRestore = ref(false);
const query = ref("");
function onQuery(newQuery: string) {
query.value = newQuery;
}
Expand Down

0 comments on commit 2c83500

Please sign in to comment.