diff --git a/frontend/src/components/Controls/Link.vue b/frontend/src/components/Controls/Link.vue index 6f995f70..e6cb4356 100644 --- a/frontend/src/components/Controls/Link.vue +++ b/frontend/src/components/Controls/Link.vue @@ -25,7 +25,19 @@ - + + + + {{ option.label }} + + + {{ option.description }} + + + + {{ option.label }} + + @@ -131,8 +143,9 @@ const options = createResource({ transform: (data) => { let allData = data.map((option) => { return { - label: option.value, + label: option.label || option.value, value: option.value, + description: option.description, } }) if (!props.hideMe && props.doctype == 'User') {