2
0
mirror of https://github.com/frappe/books.git synced 2025-02-08 23:18:31 +00:00

fix(ui): display report filter names

This commit is contained in:
18alantom 2022-11-10 22:15:33 +05:30
parent ad2eec1acb
commit ddca02104b
3 changed files with 4 additions and 3 deletions

View File

@ -299,7 +299,7 @@ export class GeneralLedger extends LedgerReport {
},
{
fieldtype: 'DynamicLink',
label: t`Ref Name`,
label: t`Ref. Name`,
references: 'referenceType',
placeholder: t`Ref Name`,
emptyMessage: t`Change Ref Type`,

View File

@ -103,7 +103,7 @@ export default {
return this.labelClass;
}
return 'text-gray-600 text-sm';
return 'text-gray-600 text-base';
},
checked() {
return this.value;

View File

@ -22,7 +22,8 @@
v-for="field in report.filters"
:border="true"
size="small"
:show-label="field.fieldtype === 'Check'"
:class="[field.fieldtype === 'Check' ? 'self-end' : '']"
:show-label="true"
:key="field.fieldname + '-filter'"
:df="field"
:value="report.get(field.fieldname)"