fix: decodeUri when not focused

This commit is contained in:
Artemy Egorov 2024-07-29 23:54:44 +03:00
parent 7d5d3dada9
commit 7bb18fd062

View file

@ -5,7 +5,6 @@
import SidebarLeft from "$lib/icons/SidebarLeft.svelte";
import SidebarRight from "$lib/icons/SidebarRight.svelte";
import { topBarInput } from "$lib/stores";
import { get } from "svelte/store";
import Block from "./Block.svelte";
import Button from "./Button.svelte";
@ -20,7 +19,7 @@
topBarInput.subscribe((val) => {
input = val;
currentInput = val;
currentInput = decodeURIComponent(input);
});
let iEl: HTMLInputElement;