style(arr): formatting
This commit is contained in:
+10
-2
@@ -1,4 +1,10 @@
|
||||
import { type Check, type CheckStatus, type Probe, type SubtitleHealth, probeHealth } from "./health";
|
||||
import {
|
||||
type Check,
|
||||
type CheckStatus,
|
||||
type Probe,
|
||||
probeHealth,
|
||||
type SubtitleHealth,
|
||||
} from "./health";
|
||||
import {
|
||||
fetchLibrary,
|
||||
type LibrarySeries,
|
||||
@@ -213,7 +219,9 @@ function renderSubtitles(subLane: HTMLElement, subs: SubtitleHealth) {
|
||||
entries.push({ name: "alass", role: "timing sync", check: subs.alass });
|
||||
entries.push({ name: "ffmpeg", role: "track extraction", check: subs.ffmpeg });
|
||||
|
||||
subLane.replaceChildren(...entries.map((entry) => subtitleModule(entry.name, entry.role, entry.check)));
|
||||
subLane.replaceChildren(
|
||||
...entries.map((entry) => subtitleModule(entry.name, entry.role, entry.check)),
|
||||
);
|
||||
subLane.hidden = false;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user