From 149d276e06bef7a5a651d8c716c66d5b223fc723 Mon Sep 17 00:00:00 2001 From: Godfrey M Date: Mon, 28 Apr 2025 13:26:49 -0700 Subject: [PATCH] fix field alignment issue --- app/View/Label.php | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/app/View/Label.php b/app/View/Label.php index 6dbad39a34..11bb24aab3 100644 --- a/app/View/Label.php +++ b/app/View/Label.php @@ -177,14 +177,10 @@ class Label implements View // The end result of this will be in this format: // {labelOne} {valueOne} | {labelTwo} {valueTwo} | {labelThree} {valueThree} $previous['value'] = trim(implode(' | ', [ - implode(' ', [$previous['label'], $previous['value']]), + implode(' ', [null, $previous['value']]), implode(' ', [$current['label'], $current['value']]), ])); - // We'll set the label to an empty string since we - // injected the label into the value field above. - $previous['label'] = ''; - return $previous; });