Fixed CSS error causing generic image widgets not to do height correctly (#15220)

This commit is contained in:
Whitey
2023-08-12 18:55:47 +02:00
committed by GitHub
parent 7c85763ff5
commit 2eed0722e7
+1 -1
View File
@@ -1,3 +1,3 @@
<a target="_blank" rel="noopener" href="{{ $target_url }}">
<img class="dashboard-image" style="max-width: {{ $dimensions['x'] }}px; max-height: {{ $dimensions['y'] }}" src="{{ $image_url }}"/>
<img class="dashboard-image" style="max-width: {{ $dimensions['x'] }}px; max-height: {{ $dimensions['y'] }}px" src="{{ $image_url }}"/>
</a>