Skip to content

Commit 47e17c3

Browse files
committed
oxfmt fix
1 parent 6f4fa15 commit 47e17c3

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

packages/plugins/src/plugins/maplibre-dggal.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -653,7 +653,9 @@ function updatePanelStatus(): void {
653653
if (settings.autoResolution) {
654654
const shown = String(effectiveResolution());
655655
const resolution = panelContainer?.querySelector<HTMLInputElement>("[data-dggal-resolution]");
656-
const resolutionValue = panelContainer?.querySelector<HTMLElement>("[data-dggal-resolution-value]");
656+
const resolutionValue = panelContainer?.querySelector<HTMLElement>(
657+
"[data-dggal-resolution-value]",
658+
);
657659
if (resolution) {
658660
resolution.value = shown;
659661
resolution.title = shown;

packages/plugins/src/plugins/maplibre-dggrid.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -877,7 +877,9 @@ function updatePanelStatus(): void {
877877
if (settings.autoResolution) {
878878
const shown = String(effectiveResolution());
879879
const resolution = panelContainer?.querySelector<HTMLInputElement>("[data-dggrid-resolution]");
880-
const resolutionValue = panelContainer?.querySelector<HTMLElement>("[data-dggrid-resolution-value]");
880+
const resolutionValue = panelContainer?.querySelector<HTMLElement>(
881+
"[data-dggrid-resolution-value]",
882+
);
881883
if (resolution) {
882884
resolution.value = shown;
883885
resolution.title = shown;

0 commit comments

Comments
 (0)