1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-01 07:01:12 +00:00

Update single-selector.js (#7707)

This commit is contained in:
Ranjiwei
2025-04-08 11:20:42 +08:00
committed by GitHub
parent 0666b7a303
commit baddc4bad7

View File

@@ -73,7 +73,7 @@ class Selector extends Component {
<div onClick={this.onToggleClick}> <div onClick={this.onToggleClick}>
{customSelectorToggle ? customSelectorToggle : ( {customSelectorToggle ? customSelectorToggle : (
<span className="cur-option"> <span className="cur-option">
{currentSelectedOption.text} {currentSelectedOption ? currentSelectedOption.text : ''}
{isDropdownToggleShown && <i className="sf3-font sf3-font-down ml-1 toggle-icon"></i>} {isDropdownToggleShown && <i className="sf3-font sf3-font-down ml-1 toggle-icon"></i>}
</span> </span>
)} )}