web: use absolute imports with path rewrite instead of relative imports (#3149)
This commit is contained in:
@ -1,3 +1,14 @@
|
||||
import { AKResponse } from "@goauthentik/web/api/Client";
|
||||
import { DEFAULT_CONFIG } from "@goauthentik/web/api/Config";
|
||||
import { EventWithContext } from "@goauthentik/web/api/Events";
|
||||
import { uiConfig } from "@goauthentik/web/common/config";
|
||||
import "@goauthentik/web/elements/Tabs";
|
||||
import "@goauthentik/web/elements/buttons/Dropdown";
|
||||
import "@goauthentik/web/elements/buttons/ModalButton";
|
||||
import "@goauthentik/web/elements/buttons/SpinnerButton";
|
||||
import { Table, TableColumn } from "@goauthentik/web/elements/table/Table";
|
||||
import "@goauthentik/web/pages/events/EventInfo";
|
||||
|
||||
import { t } from "@lingui/macro";
|
||||
|
||||
import { TemplateResult, html } from "lit";
|
||||
@ -5,17 +16,6 @@ import { customElement, property } from "lit/decorators.js";
|
||||
|
||||
import { Event, EventsApi } from "@goauthentik/api";
|
||||
|
||||
import { AKResponse } from "../../api/Client";
|
||||
import { DEFAULT_CONFIG } from "../../api/Config";
|
||||
import { EventWithContext } from "../../api/Events";
|
||||
import { uiConfig } from "../../common/config";
|
||||
import "../../pages/events/EventInfo";
|
||||
import "../Tabs";
|
||||
import "../buttons/Dropdown";
|
||||
import "../buttons/ModalButton";
|
||||
import "../buttons/SpinnerButton";
|
||||
import { Table, TableColumn } from "../table/Table";
|
||||
|
||||
@customElement("ak-object-changelog")
|
||||
export class ObjectChangelog extends Table<Event> {
|
||||
expandable = true;
|
||||
|
||||
Reference in New Issue
Block a user