{{ tileId.key }}
@@ -227,4 +228,11 @@ export class CoordinatesPanelComponent {
return array;
}, new Array()));
}
+
+ compareLevels(a: KeyValue , b: KeyValue): number {
+ const aLevel = parseInt(a.key.match(/\d+/)?.[0] ?? '0', 10);
+ const bLevel = parseInt(b.key.match(/\d+/)?.[0] ?? '0', 10);
+
+ return aLevel - bLevel;
+ }
}
\ No newline at end of file
diff --git a/erdblick_app/styles.scss b/erdblick_app/styles.scss
index 2cbc2d33..b3c3ce86 100644
--- a/erdblick_app/styles.scss
+++ b/erdblick_app/styles.scss
@@ -923,7 +923,7 @@ body {
padding-bottom: 0;
gap: 0.5em;
overflow-y: auto;
- max-width: calc(100vw - 25em);
+ max-width: calc(100vw - 35em);
align-items: center;
& > .coordinates-entry:nth-child(1) {