mirror of
https://github.com/TxtDot/vigi.git
synced 2024-11-21 11:06:21 +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 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;
|
||||
|
|
Loading…
Add table
Reference in a new issue