fix: Prevent loading all tickets when status is 'closed'
parent
47ed80e1a9
commit
c4eda756eb
|
@ -200,7 +200,7 @@ const TicketsList = (props) => {
|
||||||
showAll,
|
showAll,
|
||||||
queueIds: JSON.stringify(selectedQueueIds),
|
queueIds: JSON.stringify(selectedQueueIds),
|
||||||
tab,
|
tab,
|
||||||
unlimited:"all"
|
unlimited: status === 'open' ? "all" : "false"
|
||||||
})
|
})
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
|
|
Loading…
Reference in New Issue