Commit 5bdc9fd0 authored by Cage, Gregory's avatar Cage, Gregory
Browse files

Fix syntax to be more 'vue-like'

parent bca56504
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -300,7 +300,7 @@ function onAlert(value: string | undefined) {
                :tag="attrs.tag"
                :type="props.type"
                :collection-types="attrs.collection_types"
                :singleDatasetInput="props.singleDatasetInput"
                :single-dataset-input="props.singleDatasetInput"
                @alert="onAlert" />
            <FormDrilldown
                v-else-if="props.type === 'drill_down'"
+2 −2
Original line number Diff line number Diff line
@@ -14,7 +14,7 @@
                        :refresh-on-change="false"
                        :disabled="sustainConditionals"
                        :attributes="input.test_param"
                        :singleDatasetInput="singleDatasetInput"
                        :single-dataset-input="singleDatasetInput"
                        @change="onChange" />
                    <div v-for="(caseDetails, caseId) in input.cases" :key="caseId">
                        <FormNode
@@ -60,7 +60,7 @@
                :collapsed-disable-icon="collapsedDisableIcon"
                :loading="loading"
                :workflow-building-mode="workflowBuildingMode"
                :singleDatasetInput="singleDatasetInput"
                :single-dataset-input="singleDatasetInput"
                @change="onChange" />
        </div>
    </div>
+1 −1
Original line number Diff line number Diff line
@@ -173,7 +173,7 @@ const { keyObject } = useKeyedObjects();
            </template>

            <template v-slot:body>
                <FormNode v-bind="props.passthroughProps" :inputs="cache" :prefix="getPrefix(cacheId)" :singleDatasetInput="props.singleDatasetInput" />
                <FormNode v-bind="props.passthroughProps" :inputs="cache" :prefix="getPrefix(cacheId)" :single-dataset-input="props.singleDatasetInput" />
            </template>
        </FormCard>