2
0
mirror of https://github.com/frappe/books.git synced 2024-05-28 22:30:48 +00:00

fix(ux): space between label

- use PrintSettings.companyName instead
This commit is contained in:
18alantom 2023-06-02 13:06:31 +05:30
parent 3628957593
commit 8f0f154549
2 changed files with 3 additions and 2 deletions

View File

@ -20,8 +20,9 @@ const printSettingsFields = [
'email',
'phone',
'address',
'companyName',
];
const accountingSettingsFields = ['companyName', 'gstin'];
const accountingSettingsFields = ['gstin'];
export async function getPrintTemplatePropValues(
doc: Doc

View File

@ -20,7 +20,7 @@
<!-- Right Section -->
<section class="text-right">
<p class="font-semibold text-xl" :style="{ color: print.color }">
{{ doc.entryType }}
{{ doc.entryLabel }}
</p>
<p>{{ doc.name }}</p>
</section>