mirror of
https://github.com/immich-app/immich
synced 2025-11-14 17:36:12 +00:00
8 lines
206 B
TypeScript
8 lines
206 B
TypeScript
|
|
export const shouldIgnoreShortcut = (event: Event): boolean => {
|
||
|
|
const type = (event.target as HTMLInputElement).type;
|
||
|
|
if (['textarea', 'text'].includes(type)) {
|
||
|
|
return true;
|
||
|
|
}
|
||
|
|
return false;
|
||
|
|
};
|