refactor: 08 => add 'Ready' status option to request list filter

This commit is contained in:
puriphatt 2025-02-20 09:17:22 +07:00
parent 448d9156f9
commit 92c0545368

View file

@ -241,6 +241,10 @@ watch([() => pageState.inputSearch, () => pageState.statusFilter], () => {
label: $t('requestList.status.Pending'),
value: RequestDataStatus.Pending,
},
{
label: $t('requestList.status.Ready'),
value: RequestDataStatus.Ready,
},
{
label: $t('requestList.status.InProgress'),
value: RequestDataStatus.InProgress,