style(arr): formatting

This commit is contained in:
Miguel Palhas
2026-08-25 06:28:20 +01:00
parent a836967e32
commit a4422e26e5
7 changed files with 57 additions and 27 deletions
+10 -2
View File
@@ -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;
}