Fix placeholder for RaidCombobox in FilterBar
This commit is contained in:
parent
a7607d3f8a
commit
149fc7bee8
1 changed files with 3 additions and 1 deletions
|
|
@ -542,8 +542,10 @@ const RaidCombobox = (props: Props) => {
|
|||
className="Flush"
|
||||
open={open}
|
||||
onOpenChange={toggleOpen}
|
||||
placeholder={t('raids.placeholder')}
|
||||
trigger={{ className: 'Raid' }}
|
||||
placeholder={
|
||||
props.showAllRaidsOption ? t('raids.all') : t('raids.placeholder')
|
||||
}
|
||||
triggerTabIndex={props.tabIndex}
|
||||
value={renderTriggerContent()}
|
||||
>
|
||||
|
|
|
|||
Loading…
Reference in a new issue