diff options
Diffstat (limited to 'src/components/TileInfoModal.vue')
| -rw-r--r-- | src/components/TileInfoModal.vue | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/components/TileInfoModal.vue b/src/components/TileInfoModal.vue index 423a2f5..90ad9a7 100644 --- a/src/components/TileInfoModal.vue +++ b/src/components/TileInfoModal.vue @@ -50,7 +50,7 @@ export default defineComponent({ }, dummyNode(): LayoutNode { let newNode = new LayoutNode(this.nodeName, []); - newNode.dims = [this.uiOpts.infoModalImgSz, this.uiOpts.infoModalImgSz]; + newNode.dims = [this.lytOpts.maxTileSz, this.lytOpts.maxTileSz]; return newNode; }, }, @@ -69,8 +69,8 @@ export default defineComponent({ 'none', backgroundColor: '#1c1917', backgroundSize: 'cover', - width: this.uiOpts.infoModalImgSz + 'px', - height: this.uiOpts.infoModalImgSz + 'px', + width: this.lytOpts.maxTileSz + 'px', + height: this.lytOpts.maxTileSz + 'px', }; }, licenseToUrl(license: string){ |
