0
0
Fork 0

Clean selectedTickets after moving tickets

This commit is contained in:
William Buezas 2024-06-19 20:58:31 -03:00
parent b6ec10994a
commit 6cd8a478fa
1 changed files with 1 additions and 0 deletions

View File

@ -256,6 +256,7 @@ const moveTicketsFuture = async () => {
let params = { tickets: ticketsToMove };
await axios.post('Tickets/merge', params);
notify(t('futureTickets.moveTicketSuccess'), 'positive');
selectedTickets.value = [];
arrayData.fetch({ append: false });
} catch (error) {
console.error('Error moving tickets to future', error);