fix: add options description for Currency fieldtype
This commit is contained in:
parent
1049f5d6c2
commit
536f9d9180
1 changed files with 4 additions and 0 deletions
|
|
@ -63,6 +63,10 @@ let docfield_df = computed(() => {
|
|||
|
||||
if (store.form.selected_field.fieldtype === "Select") {
|
||||
df.description = __("Enter list of Options, each on a new line.");
|
||||
} else if (store.form.selected_field.fieldtype === "Currency") {
|
||||
df.description = __(
|
||||
"fieldname of the currency field or a cached value (e.g. Company:company:default_currency)."
|
||||
);
|
||||
} else {
|
||||
df.description = "";
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue