Skip to content

Commit

Permalink
Merge pull request #749 from webitel/fix/chat-gateways-table
Browse files Browse the repository at this point in the history
fix: added emply string for flow column in chat-getways table if item dosent have flow [WTEL-4915]
  • Loading branch information
dlohvinov authored Aug 20, 2024
2 parents 3d244e1 + 6f0b0c2 commit 659a52d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 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,7 +90,7 @@

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

0 comments on commit 659a52d

Please sign in to comment.