Commit d3dd1332 authored by Ahmed Awan's avatar Ahmed Awan
Browse files

[25.0] Make invocation input/output tabs lazy

parent 81f9e6da
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -64,13 +64,13 @@ const parameters = computed(() => Object.values(props.invocation.input_step_para
</script>
<template>
    <span>
        <BTab title="Inputs">
        <BTab title="Inputs" lazy>
            <div v-if="parameters.length || inputData.length">
                <WorkflowInvocationInputs :invocation="props.invocation" />
            </div>
            <BAlert v-else show variant="info"> No input data was provided for this workflow invocation. </BAlert>
        </BTab>
        <BTab title="Outputs">
        <BTab title="Outputs" lazy>
            <div v-if="outputs.length">
                <div
                    v-for="([key, output], index) in outputs"