Fixed double div in current purchase value

Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
snipe 2022-01-12 22:26:56 -08:00
parent 224d0b2fd2
commit f206d4ed4e

View file

@ -449,7 +449,7 @@
@if (($field->format=='URL') && ($asset->{$field->db_column_name()}!='')) @if (($field->format=='URL') && ($asset->{$field->db_column_name()}!=''))
<a href="{{ $asset->{$field->db_column_name()} }}" target="_new">{{ $asset->{$field->db_column_name()} }}</a> <a href="{{ $asset->{$field->db_column_name()} }}" target="_new">{{ $asset->{$field->db_column_name()} }}</a>
@else @else
{!! nl2br(e($asset->{$field->db_column_name()})) !!} {!! nl2br(e($asset->{$field->db_column_name()})) !!} &nbsp;
@endif @endif
@endif @endif
</div> </div>
@ -499,7 +499,6 @@
</strong> </strong>
</div> </div>
<div class="col-md-6"> <div class="col-md-6">
<div class="col-md-6" style="margin-left:-15px;">
@if (($asset->id) && ($asset->location)) @if (($asset->id) && ($asset->location))
{{ $asset->location->currency }} {{ $asset->location->currency }}
@elseif (($asset->id) && ($asset->location)) @elseif (($asset->id) && ($asset->location))
@ -509,7 +508,7 @@
@endif @endif
{{ Helper::formatCurrencyOutput($asset->getDepreciatedValue() )}} {{ Helper::formatCurrencyOutput($asset->getDepreciatedValue() )}}
</div>
</div> </div>
</div> </div>
@endif @endif