2
0
mirror of https://github.com/frappe/books.git synced 2024-12-22 10:58:59 +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', 'email',
'phone', 'phone',
'address', 'address',
'companyName',
]; ];
const accountingSettingsFields = ['companyName', 'gstin']; const accountingSettingsFields = ['gstin'];
export async function getPrintTemplatePropValues( export async function getPrintTemplatePropValues(
doc: Doc doc: Doc

View File

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