mirror of
https://github.com/TxtDot/vigi.git
synced 2024-11-21 19:16:20 +03:00
fix: decodeUri when not focused
This commit is contained in:
parent
7d5d3dada9
commit
7bb18fd062
1 changed files with 1 additions and 2 deletions
|
@ -5,7 +5,6 @@
|
||||||
import SidebarLeft from "$lib/icons/SidebarLeft.svelte";
|
import SidebarLeft from "$lib/icons/SidebarLeft.svelte";
|
||||||
import SidebarRight from "$lib/icons/SidebarRight.svelte";
|
import SidebarRight from "$lib/icons/SidebarRight.svelte";
|
||||||
import { topBarInput } from "$lib/stores";
|
import { topBarInput } from "$lib/stores";
|
||||||
import { get } from "svelte/store";
|
|
||||||
import Block from "./Block.svelte";
|
import Block from "./Block.svelte";
|
||||||
import Button from "./Button.svelte";
|
import Button from "./Button.svelte";
|
||||||
|
|
||||||
|
@ -20,7 +19,7 @@
|
||||||
|
|
||||||
topBarInput.subscribe((val) => {
|
topBarInput.subscribe((val) => {
|
||||||
input = val;
|
input = val;
|
||||||
currentInput = val;
|
currentInput = decodeURIComponent(input);
|
||||||
});
|
});
|
||||||
|
|
||||||
let iEl: HTMLInputElement;
|
let iEl: HTMLInputElement;
|
||||||
|
|
Loading…
Add table
Reference in a new issue