diff --git a/src/UI/Studio/EditTheme.svelte b/src/UI/Studio/EditTheme.svelte index 6728337df..7e0be8d12 100644 --- a/src/UI/Studio/EditTheme.svelte +++ b/src/UI/Studio/EditTheme.svelte @@ -9,7 +9,6 @@ import RawEditor from "./RawEditor.svelte" import { OsmConnection } from "../../Logic/Osm/OsmConnection" import DeleteButton from "./DeleteButton.svelte" - import { UIEventSource } from "../../Logic/UIEventSource" import StudioHashSetter from "./StudioHashSetter" export let state: EditThemeState @@ -57,7 +56,7 @@ let hasErrors = messages.map( (m: ConversionMessage[]) => m.filter((m) => m.level === "error").length ) - let title = state.getStoreFor(["id"]) + let title = state.getStoreFor(["id"]) const wl = window.location const baseUrl = wl.protocol + "//" + wl.host + "/theme.html?userlayout=" diff --git a/src/UI/StudioGUI.svelte b/src/UI/StudioGUI.svelte index 57588d4ba..100992e5c 100644 --- a/src/UI/StudioGUI.svelte +++ b/src/UI/StudioGUI.svelte @@ -363,7 +363,7 @@ id="theme-search" type="search" placeholder="Filter themes by name" - bind:value={themeFilterTerm} + bind:value={$themeFilterTerm} />