Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -47,13 +47,15 @@
<div v-else-if="hasError">
{{ props.config.name }} integration failed to connect due to an API error.
</div>

<component
:is="props.config.connectedParamsComponent"
v-else-if="isComplete && props.config.connectedParamsComponent"
:integration="integration"
:segment-id="route.params.id"
:grandparent-id="route.params.grandparentId"
/>

<component
:is="props.config.statusComponent"
v-else-if="!isComplete && props.config.statusComponent"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@
</section>
</div>

<section>
<app-integration-progress-wrapper :segments="[route.params.id]">
<section v-loading="loadingFetch">
<app-integration-progress-wrapper v-if="!loadingFetch" :segments="[route.params.id]">
<template #default="{ progress, progressError }">
<div v-if="platformsByStatus.length > 0" class="flex flex-col gap-6">
<lf-integration-list-item
Expand Down Expand Up @@ -100,7 +100,7 @@ const route = useRoute();

const { findSubProject } = useLfSegmentsStore();
const { doFetch } = mapActions('integration');
const { array } = mapGetters('integration');
const { array, loadingFetch } = mapGetters('integration');

const { id, grandparentId } = route.params;

Expand Down
Loading