Skip to content

Commit be5bb00

Browse files
style: auto-fix formatting
1 parent 16f6fa4 commit be5bb00

1 file changed

Lines changed: 7 additions & 15 deletions

File tree

packages/web-inspector/src/index.ts

Lines changed: 7 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,5 @@
1-
import {
2-
LitElement,
3-
css,
4-
html,
5-
nothing,
6-
unsafeCSS,
7-
type TemplateResult,
8-
} from "lit";
1+
import { LitElement, css, html, nothing, unsafeCSS } from "lit";
2+
import type { TemplateResult } from "lit";
93
import { marked } from "marked";
104
import { styleMap } from "lit/directives/style-map.js";
115
import tailwindStyles from "./styles/generated.css";
@@ -1839,10 +1833,9 @@ export class ɵCpkThreadDetails extends LitElement {
18391833
`
18401834
: nothing
18411835
}
1842-
${
1843-
ɵCpkThreadDetails.TAB_LIST.map((tab) =>
1844-
this._activatedTabs.has(tab.id)
1845-
? html`<div
1836+
${ɵCpkThreadDetails.TAB_LIST.map((tab) =>
1837+
this._activatedTabs.has(tab.id)
1838+
? html`<div
18461839
class="cpk-td__panel"
18471840
style=${
18481841
this._tab === tab.id && !this._panelInitializing
@@ -1852,9 +1845,8 @@ export class ɵCpkThreadDetails extends LitElement {
18521845
>
18531846
${this.renderTabContent(tab.id)}
18541847
</div>`
1855-
: nothing,
1856-
)
1857-
}
1848+
: nothing,
1849+
)}
18581850
</div>
18591851
</div>
18601852

0 commit comments

Comments
 (0)