fix: remove mentioning of context (#1017)
Co-authored-by: Dominik Pschenitschni <mail@celement.de> Reviewed-on: https://kolaente.dev/vikunja/frontend/pulls/1017 Reviewed-by: konrad <k@knt.li> Co-authored-by: dpschen <dpschen@noreply.kolaente.de> Co-committed-by: dpschen <dpschen@noreply.kolaente.de>
This commit is contained in:
parent
46fa43d67f
commit
981babd691
7 changed files with 47 additions and 15 deletions
|
|
@ -17,7 +17,7 @@ declare global {
|
|||
interface Window {
|
||||
API_URL: string;
|
||||
SENTRY_ENABLED: boolean;
|
||||
SENTRY_DSN: string,
|
||||
SENTRY_DSN: string;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -54,13 +54,15 @@ const app = createApp(App)
|
|||
app.use(Notifications)
|
||||
|
||||
// directives
|
||||
import focus from './directives/focus'
|
||||
import tooltip from './directives/tooltip'
|
||||
import focus from '@/directives/focus'
|
||||
import tooltip from '@/directives/tooltip'
|
||||
import shortcut from '@/directives/shortcut'
|
||||
import cypress from '@/directives/cypress'
|
||||
|
||||
app.directive('focus', focus)
|
||||
app.directive('tooltip', tooltip)
|
||||
app.directive('shortcut', shortcut)
|
||||
app.directive('cy', cypress)
|
||||
|
||||
// global components
|
||||
import FontAwesomeIcon from './icons'
|
||||
|
|
|
|||
Reference in a new issue