diff --git a/src/articles.php b/src/articles.php
index afb3108..f8ad572 100644
--- a/src/articles.php
+++ b/src/articles.php
@@ -431,7 +431,7 @@ document.addEventListener('DOMContentLoaded', function () {
${new Intl.NumberFormat('de-DE').format(article.weight_grams)} g | ${quantityBadge}
-
${productLink}
${actionButtons}
diff --git a/src/packing_list_detail.php b/src/packing_list_detail.php
index 4438638..1c6c958 100644
--- a/src/packing_list_detail.php
+++ b/src/packing_list_detail.php
@@ -276,7 +276,7 @@ function render_item_row($item, $level, $items_by_parent) {
echo '
';
if ($item['category_name'] !== 'Sonstiges' && !empty($item['category_name'])) {
- echo '' . htmlspecialchars($item['category_name']) . '';
+ echo '' . htmlspecialchars($item['category_name']) . '';
} else {
echo '---';
}
|