mirror of
https://github.com/immich-app/immich.git
synced 2024-12-28 22:51:59 +00:00
Update web/src/lib/actions/focus.ts
Co-authored-by: Daniel Dietzler <36593685+danieldietzler@users.noreply.github.com>
This commit is contained in:
parent
683f503647
commit
43aa1e8162
1 changed files with 2 additions and 2 deletions
|
@ -1,3 +1,3 @@
|
|||
export const initInput = (element: HTMLInputElement, timeOut: number = 0) => {
|
||||
setTimeout(() => element.focus(), timeOut);
|
||||
export const initInput = (element: HTMLInputElement, timeout: number = 0) => {
|
||||
setTimeout(() => element.focus(), timeout);
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue