Merge pull request #2108 from brkcvn/edit-long-charachter

Long text problem at the Invoice and Bills page.
This commit is contained in:
Cüneyt Şentürk 2021-06-15 12:42:57 +03:00 committed by GitHub
commit f489317fee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -79,27 +79,27 @@
<table class="table table-borderless p-0"> <table class="table table-borderless p-0">
<tbody> <tbody>
<tr> <tr>
<th class="p-0"> <th class="p-0" style="text-align:left;">
<strong class="d-block">{{ contact.name }}</strong> <strong class="d-block">{{ contact.name }}</strong>
</th> </th>
</tr> </tr>
<tr> <tr>
<th class="p-0"> <th class="p-0" style="text-align:left; white-space: normal;">
{{ contact.address }} {{ contact.address }}
</th> </th>
</tr> </tr>
<tr v-if="contact.tax_number"> <tr v-if="contact.tax_number">
<th class="p-0"> <th class="p-0" style="text-align:left;">
{{ taxNumberText }}: {{ contact.tax_number }} {{ taxNumberText }}: {{ contact.tax_number }}
</th> </th>
</tr> </tr>
<tr v-if="contact.phone"> <tr v-if="contact.phone">
<th class="p-0"> <th class="p-0" style="text-align:left;">
{{ contact.phone }} {{ contact.phone }}
</th> </th>
</tr> </tr>
<tr v-if="contact.email"> <tr v-if="contact.email">
<th class="p-0"> <th class="p-0" style="text-align:left;">
{{ contact.email }} {{ contact.email }}
</th> </th>
</tr> </tr>