1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-14 15:13:29 +01:00

Fix label for custom field with blank label

This commit is contained in:
Hillel Coren 2017-02-01 13:32:07 +02:00
parent 16e37be43a
commit 5bae89dcbd

View File

@ -172,7 +172,7 @@
@endif @endif
@if ($account->showCustomField('custom_invoice_text_label1', $invoice)) @if ($account->showCustomField('custom_invoice_text_label1', $invoice))
{!! Former::text('custom_text_value1')->label($account->custom_invoice_text_label1)->data_bind("value: custom_text_value1, valueUpdate: 'afterkeydown'") !!} {!! Former::text('custom_text_value1')->label($account->custom_invoice_text_label1 ?: ' ')->data_bind("value: custom_text_value1, valueUpdate: 'afterkeydown'") !!}
@endif @endif
</div> </div>
@ -219,7 +219,7 @@
) !!} ) !!}
@if ($account->showCustomField('custom_invoice_text_label2', $invoice)) @if ($account->showCustomField('custom_invoice_text_label2', $invoice))
{!! Former::text('custom_text_value2')->label($account->custom_invoice_text_label2)->data_bind("value: custom_text_value2, valueUpdate: 'afterkeydown'") !!} {!! Former::text('custom_text_value2')->label($account->custom_invoice_text_label2 ?: ' ')->data_bind("value: custom_text_value2, valueUpdate: 'afterkeydown'") !!}
@endif @endif
@if ($entityType == ENTITY_INVOICE) @if ($entityType == ENTITY_INVOICE)