mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-09 23:24:06 -08:00
Fixed double div in current purchase value
Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
parent
224d0b2fd2
commit
f206d4ed4e
|
@ -449,7 +449,7 @@
|
|||
@if (($field->format=='URL') && ($asset->{$field->db_column_name()}!=''))
|
||||
<a href="{{ $asset->{$field->db_column_name()} }}" target="_new">{{ $asset->{$field->db_column_name()} }}</a>
|
||||
@else
|
||||
{!! nl2br(e($asset->{$field->db_column_name()})) !!}
|
||||
{!! nl2br(e($asset->{$field->db_column_name()})) !!}
|
||||
@endif
|
||||
@endif
|
||||
</div>
|
||||
|
@ -499,7 +499,6 @@
|
|||
</strong>
|
||||
</div>
|
||||
<div class="col-md-6">
|
||||
<div class="col-md-6" style="margin-left:-15px;">
|
||||
@if (($asset->id) && ($asset->location))
|
||||
{{ $asset->location->currency }}
|
||||
@elseif (($asset->id) && ($asset->location))
|
||||
|
@ -509,7 +508,7 @@
|
|||
@endif
|
||||
{{ Helper::formatCurrencyOutput($asset->getDepreciatedValue() )}}
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
@endif
|
||||
|
|
Loading…
Reference in a new issue