Skip to content

Commit

Permalink
fix: changed solutio. return previous code and remove default flow va…
Browse files Browse the repository at this point in the history
…lue from defaultObject in Chat Gateways API [WTEL-4915]
  • Loading branch information
liza-pohranichna committed Aug 19, 2024
1 parent cce1c95 commit 6f0b0c2
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,6 @@ const getChatGatewayList = async (params) => {
enabled: false,
name: '',
uri: '',
flow: {},
provider: '',
metadata: {},
updates: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,13 +90,12 @@

<template #flow="{ item }">
<adm-item-link
v-if="item.flow.id"
v-if="item.flow"
:id="item.flow.id"
:route-name="RouteNames.FLOW"
>
{{ item.flow.name }}
</adm-item-link>
<p v-else />
</template>

<template #provider="{ item }">
Expand Down

0 comments on commit 6f0b0c2

Please sign in to comment.