diff --git a/.eslintrc.cjs b/.eslintrc.cjs index 44bed4704..20132e0c2 100644 --- a/.eslintrc.cjs +++ b/.eslintrc.cjs @@ -36,6 +36,7 @@ module.exports = { caughtErrorsIgnorePattern: '^_' } ], - 'no-underscore-dangle': 'off' + 'no-underscore-dangle': 'off', + 'svelte/no-at-html-tags': 'off' } }; diff --git a/src/frontend/src/lib/components/core/Busy.svelte b/src/frontend/src/lib/components/core/Busy.svelte index 295cb951c..be509f8d3 100644 --- a/src/frontend/src/lib/components/core/Busy.svelte +++ b/src/frontend/src/lib/components/core/Busy.svelte @@ -4,6 +4,7 @@ import { busy } from '$lib/stores/busy.store'; import Spinner from '$lib/components/ui/Spinner.svelte'; import { isNullish, nonNullish } from '$lib/utils/utils'; + import { handleKeyPress } from '$lib/utils/keyboard.utils'; const close = () => { if (isNullish($busy) || !$busy.close) { @@ -15,7 +16,15 @@ {#if nonNullish($busy)} -