From 9a75131a981497681978f4d204f4923b21d9972a Mon Sep 17 00:00:00 2001 From: Godfrey M Date: Mon, 3 Feb 2025 10:18:13 -0800 Subject: [PATCH] removed old label artifact --- app/View/Label.php | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/app/View/Label.php b/app/View/Label.php index bafe97ffef..22dbe6d26e 100644 --- a/app/View/Label.php +++ b/app/View/Label.php @@ -116,12 +116,9 @@ class Label implements View } } - if ($template->getSupport2DBarcode()) { + if ($template->getSupport2DBarcode()) { $barcode2DType = $settings->label2_2d_type; - $barcode2DType = ($barcode2DType == 'default') ? - $settings->barcode_type : - $barcode2DType; - if (($barcode2DType != 'none') && (!is_null($barcode2DType))) { + if (($barcode2DType != 'none') && (!is_null($barcode2DType))) { switch ($settings->label2_2d_target) { case 'ht_tag': $barcode2DTarget = route('ht/assetTag', $asset->asset_tag);