Merge branch 'develop' into dev
All checks were successful
Build & Deploy on Dev / build (push) Successful in 3m21s

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2026-01-30 10:26:51 +07:00
commit a0628caf74

View file

@ -168,9 +168,8 @@ const commanderList = computed(() => {
const approveCheck = computed(() => {
const commanders = rows.value?.commanders;
return (
Array.isArray(commanders) &&
commanders.length > 0 &&
commanders.every((commander) => commander.approveStatus === "APPROVE")
commanders?.every((commander) => commander.approveStatus === "APPROVE") ??
false
);
});