chore(executions): properly cast values for the disabled property to boolean (#13384)

This commit is contained in:
Miloš Paunović
2025-12-04 15:50:32 +01:00
committed by GitHub
parent 5245014a32
commit 700527b5dc

View File

@@ -44,9 +44,9 @@
const currentIdx = ref(-1);
const prevDisabled = computed(
() => total.value && currentIdx.value + 1 === total.value,
() => !!(total.value && currentIdx.value + 1 === total.value),
);
const nextDisabled = computed(() => total.value && currentIdx.value === 0);
const nextDisabled = computed(() => !!(total.value && currentIdx.value === 0));
const loadExecutions = async () => {
const params = {