Skip to content

Commit b81cbe6

Browse files
fix
1 parent eed6131 commit b81cbe6

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

lib/ui/select.js

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,16 @@ const Select = ({
3838

3939
return (
4040
<>
41-
<button title={switch_ ? titles[1] : titles[0]} type='button' className='bb cw sb scp' onClick={setSwitch(!switch_)}>{<GoogleFonts_Icons_ArrowDropUp id="arw" />}<img src={items[id][1]} title={items[id][0]} alt="" className='fi r2px ow' />{items[id][0]}</button>
41+
<button
42+
title={switch_ ? titles[1] : titles[0]}
43+
type='button'
44+
className='bb cw sb scp'
45+
onClick={() => setSwitch(!switch_)}
46+
>
47+
<GoogleFonts_Icons_ArrowDropUp id="arw" />
48+
<img src={items[id][1]} title={items[id][0]} alt="" className='fi r2px ow' />
49+
{items[id][0]}
50+
</button>
4251
{switch_ ? <div className='du'>items</div> : <div />}
4352
</>
4453
)

0 commit comments

Comments
 (0)