immich/web/src/lib/utils/shortcut.ts

8 lines
206 B
TypeScript
Raw Normal View History

export const shouldIgnoreShortcut = (event: Event): boolean => {
const type = (event.target as HTMLInputElement).type;
if (['textarea', 'text'].includes(type)) {
return true;
}
return false;
};