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"
|
className="Flush"
|
||||||
open={open}
|
open={open}
|
||||||
onOpenChange={toggleOpen}
|
onOpenChange={toggleOpen}
|
||||||
placeholder={t('raids.placeholder')}
|
|
||||||
trigger={{ className: 'Raid' }}
|
trigger={{ className: 'Raid' }}
|
||||||
|
placeholder={
|
||||||
|
props.showAllRaidsOption ? t('raids.all') : t('raids.placeholder')
|
||||||
|
}
|
||||||
triggerTabIndex={props.tabIndex}
|
triggerTabIndex={props.tabIndex}
|
||||||
value={renderTriggerContent()}
|
value={renderTriggerContent()}
|
||||||
>
|
>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue