This commit is contained in:
Mirco Wittrien 2020-02-09 21:45:14 +01:00
parent 563e90fef8
commit e040379943
2 changed files with 2 additions and 2 deletions

View File

@ -7787,7 +7787,7 @@
renderPopout: instance => {
let items = options.map(option => {
let selected = option.value && option.value === selectedOption.value || option.key && option.key === selectedOption.key;
return typeof this.props.renderOption == "function" ? this.props.renderOption(option) : BDFDB.ReactUtils.createElement(InternalComponents.LibraryComponents.ContextMenuItem, {
return typeof this.props.renderOption == "function" ? this.props.renderOption(option) : BDFDB.ReactUtils.createElement(InternalComponents.LibraryComponents.ContextMenuItems.Item, {
className: BDFDB.DOMUtils.formatClassName(BDFDB.disCN.quickselectpopoutoption, selected && BDFDB.disCN.quickselectpopoutoptionselected),
action: selected ? null : _ => {
instance.close();

File diff suppressed because one or more lines are too long