diff --git a/Theme/Backend/helper-list.tpl.php b/Theme/Backend/helper-list.tpl.php
index c983008..5f95801 100755
--- a/Theme/Backend/helper-list.tpl.php
+++ b/Theme/Backend/helper-list.tpl.php
@@ -163,7 +163,7 @@ echo $this->data['nav']->render(); ?>
= $this->printHtml($template->name); ?>
|
getTags(); foreach ($tags as $tag) : ?>
- = empty($tag->icon) ? '' : ''; ?>= $this->printHtml($tag->getL11n()); ?>
+ = empty($tag->icon) ? '' : '' . $this->printHtml($tag->icon) . ''; ?>= $this->printHtml($tag->getL11n()); ?>
| = $this->printHtml($this->renderUserName('%3$s %2$s %1$s', [$template->createdBy->name1, $template->createdBy->name2, $template->createdBy->name3, $template->createdBy->login ?? ''])); ?>
| = $this->printHtml($template->createdAt->format('Y-m-d')); ?>
diff --git a/Theme/Backend/helper-single.tpl.php b/Theme/Backend/helper-single.tpl.php
index 35b2820..aba0f99 100755
--- a/Theme/Backend/helper-single.tpl.php
+++ b/Theme/Backend/helper-single.tpl.php
@@ -154,7 +154,7 @@ echo $this->data['nav']->render(); ?>
| = $this->getHtml('Tags'); ?>
|
getTags(); foreach ($tags as $tag) : ?>
- = empty($tag->icon) ? '' : ''; ?>= $this->printHtml($tag->getL11n()); ?>
+ = empty($tag->icon) ? '' : '' . $this->printHtml($tag->icon) . ''; ?>= $this->printHtml($tag->getL11n()); ?>
diff --git a/tests/depreciation/styles.css b/tests/depreciation/styles.css
index 3497c08..7b00268 100755
--- a/tests/depreciation/styles.css
+++ b/tests/depreciation/styles.css
@@ -4,7 +4,7 @@
--color-transparent: rgba(54, 151, 219, .25);
--color-subtotal: rgba(54, 151, 219, .5);
--color-border: #d6d6d6;
- --font-family: 'Roboto', sans-serif;
+ --font-family: 'Arial', Helvetica, sans-serif;
}
body {
|