Skip to content

Commit d936ccc

Browse files
author
Vítězslav Dvořák
committed
Initial empty value fix
1 parent 5ec5804 commit d936ccc

2 files changed

Lines changed: 12 additions & 1 deletion

File tree

src/application.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959

6060
$appRow = new \Ease\TWB5\Row();
6161
$opsCol = $appRow->addColumn(6, [
62-
new \Ease\Html\ImgTag($app->getDataValue('logo')),
62+
new \Ease\Html\ImgTag($app->getDataValue('logo') ? $app->getDataValue('logo') : 'images/unknown.svg' ),
6363
new AppTokenTable($app),
6464
]);
6565

src/images/unknown.svg

Lines changed: 11 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)