fix width=0px causing empty looking montage
This commit is contained in:
parent
7905f11be6
commit
d622ae9251
|
@ -231,7 +231,7 @@ foreach ( $monitors as $monitor ) {
|
|||
>
|
||||
<?php
|
||||
$monitor_options = $options;
|
||||
$monitor_options['width'] = $monitor_options['width'].'px';
|
||||
$monitor_options['width'] = $monitor_options['width']?$monitor_options['width'].'px' : null;
|
||||
$monitor_options['height'] = $monitor_options['height']?$monitor_options['height'].'px' : null;
|
||||
$monitor_options['connkey'] = $monitor->connKey();
|
||||
|
||||
|
|
Loading…
Reference in New Issue