From f206d4ed4e42a4eedadcac3d2b9364af59436ea6 Mon Sep 17 00:00:00 2001 From: snipe Date: Wed, 12 Jan 2022 22:26:56 -0800 Subject: [PATCH] Fixed double div in current purchase value Signed-off-by: snipe --- resources/views/hardware/view.blade.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/resources/views/hardware/view.blade.php b/resources/views/hardware/view.blade.php index 8b541b416..51748b281 100755 --- a/resources/views/hardware/view.blade.php +++ b/resources/views/hardware/view.blade.php @@ -449,7 +449,7 @@ @if (($field->format=='URL') && ($asset->{$field->db_column_name()}!='')) {{ $asset->{$field->db_column_name()} }} @else - {!! nl2br(e($asset->{$field->db_column_name()})) !!} + {!! nl2br(e($asset->{$field->db_column_name()})) !!}   @endif @endif @@ -499,7 +499,6 @@
-
@if (($asset->id) && ($asset->location)) {{ $asset->location->currency }} @elseif (($asset->id) && ($asset->location)) @@ -509,7 +508,7 @@ @endif {{ Helper::formatCurrencyOutput($asset->getDepreciatedValue() )}} -
+
@endif