fix(ui): next button disabled

This commit is contained in:
Shekar Siri 2024-05-28 17:23:45 +02:00
parent 1d31900c9f
commit 85325334e6

View file

@ -93,7 +93,7 @@ function QueueControls(props: Props) {
content={<div className="whitespace-nowrap">Play Next Session</div>}
open={nextId ? undefined : false}
>
<Button size={'small'} shape={'circle'} disabled={!previousId} className={'flex items-center justify-center'}>
<Button size={'small'} shape={'circle'} disabled={!nextId} className={'flex items-center justify-center'}>
<RightOutlined />
</Button>
</Popover>