Skip to content

Commit 974d990

Browse files
committed
Move exception-dialog component into exceptions-table folder.
It's only used by the table components.
1 parent 25216dc commit 974d990

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/exception-dialog.ts renamed to src/exceptions-table/exception-dialog.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
import { LitElement, html, css } from "lit";
66
import { customElement, property } from "lit/decorators.js";
7-
import { ExceptionListEntry } from "./types";
7+
import { ExceptionListEntry } from "../types";
88

99
/**
1010
* Dialog for showing a raw exception entry.

src/exceptions-table/exceptions-table.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ import { customElement, property } from "lit/decorators.js";
77
import { BugMetaMap, ExceptionListEntry } from "../types";
88
import "../badge";
99
import "../bug-label";
10-
import "../exception-dialog";
11-
import { ExceptionDialog } from "../exception-dialog";
10+
import "./exception-dialog";
11+
import { ExceptionDialog } from "./exception-dialog";
1212
import tableStyles from "./table-styles.css.ts";
1313
import { capitalizeFirstChar, renderUrlPattern } from "./utils.ts";
1414

src/exceptions-table/top-exceptions-table.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ import { customElement, property } from "lit/decorators.js";
77
import { BugMetaMap, ExceptionListEntry } from "../types";
88
import "../badge";
99
import "../bug-label";
10-
import "../exception-dialog";
11-
import { ExceptionDialog } from "../exception-dialog";
10+
import "./exception-dialog";
11+
import { ExceptionDialog } from "./exception-dialog";
1212
import tableStyles from "./table-styles.css.ts";
1313
import { getHostFromUrlPattern } from "./utils.ts";
1414

0 commit comments

Comments
 (0)