Skip to content

Commit

Permalink
Merge pull request #702 from webitel/fix/show-import-destination
Browse files Browse the repository at this point in the history
Fix/show import destination
  • Loading branch information
Lera24 authored Jul 3, 2024
2 parents ac44081 + 350fb4c commit a7337c3
Showing 1 changed file with 15 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -74,13 +74,21 @@
</wt-item-link>
</template>
<template #source="{ item }">
<wt-item-link
v-if="item.source"
:id="item.source.id"
:route-name="RouteNames.QUEUES"
>
{{ item.source.name }}
</wt-item-link>
<p>
{{ item.source ? item.source.name : '' }}
</p>

<!-- https://webitel.atlassian.net/browse/WTEL-4559-->
<!-- There is a bug with route-name in wt-item-link, as a temporary solution, we removed wt-item-link -->

<!-- <wt-item-link-->
<!-- v-if="item.source"-->
<!-- :id="item.source.id"-->
<!-- :route-name="RouteNames.QUEUES"-->
<!-- >-->
<!-- {{ item.source.name }}-->
<!-- </wt-item-link>-->

</template>
<template #actions="{ item }">
<upload-action
Expand Down

0 comments on commit a7337c3

Please sign in to comment.