mirror of
https://github.com/kestra-io/kestra.git
synced 2025-12-19 18:05:41 -05:00
chore(executions): properly cast values for the disabled property to boolean (#13384)
This commit is contained in:
@@ -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 = {
|
||||
|
||||
Reference in New Issue
Block a user