Merge pull request #1089 from frappe/mergify/bp/main-hotfix/pr-1087

fix: fields should not be mandatory in single doctype (backport #1087)
This commit is contained in:
Shariq Ansari 2025-07-29 11:52:36 +05:30 committed by GitHub
commit f1786b7cd9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 9 additions and 5 deletions

View File

@ -93,8 +93,7 @@
"fieldname": "service_provider",
"fieldtype": "Select",
"label": "Service Provider",
"options": "frankfurter.app\nexchangerate.host",
"reqd": 1
"options": "frankfurter.app\nexchangerate.host"
},
{
"depends_on": "eval:doc.service_provider == 'exchangerate.host';",
@ -111,8 +110,8 @@
"index_web_pages_for_search": 1,
"issingle": 1,
"links": [],
"modified": "2025-07-28 17:04:24.585768",
"modified_by": "shariq@frappe.io",
"modified": "2025-07-29 11:26:50.420614",
"modified_by": "Administrator",
"module": "FCRM",
"name": "FCRM Settings",
"owner": "Administrator",

View File

@ -5,7 +5,12 @@
class="flex h-full w-full rounded shadow overflow-hidden cursor-pointer"
>
<Tooltip :text="__(item.data.tooltip)">
<NumberChart v-if="item.data" :key="index" :config="item.data" />
<NumberChart
class="!items-start"
v-if="item.data"
:key="index"
:config="item.data"
/>
</Tooltip>
</div>
<div