From be85e2d1d8b671fe527e2efac84df5e99b404028 Mon Sep 17 00:00:00 2001 From: king <18310653075@163.com> Date: 星期五, 09 十二月 2022 15:23:56 +0800 Subject: [PATCH] Merge branch 'develop' --- src/menu/components/share/actioncomponent/actionform/index.jsx | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/menu/components/share/actioncomponent/actionform/index.jsx b/src/menu/components/share/actioncomponent/actionform/index.jsx index efe091f..ddbb440 100644 --- a/src/menu/components/share/actioncomponent/actionform/index.jsx +++ b/src/menu/components/share/actioncomponent/actionform/index.jsx @@ -807,7 +807,7 @@ getPopupContainer={() => document.getElementById('winter')} > {item.options.map((option, index) => - <Select.Option key={index} extend={option[item.extendName] || ''} value={(option.value || option.field)}> + <Select.Option key={index} title={option.text || option.label} extend={option[item.extendName] || ''} value={(option.value || option.field)}> {(option.text || option.label)} </Select.Option> )} @@ -821,7 +821,7 @@ getPopupContainer={() => document.getElementById('winter')} > {item.options.map((option, index) => - <Select.Option key={index} value={(option.value || option.field)}> + <Select.Option key={index} title={option.text || option.label} value={(option.value || option.field)}> {(option.text || option.label)} </Select.Option> )} -- Gitblit v1.8.0