Skip to content

Commit

Permalink
BC-6349 N21-1715 fix tool autocomplete (#3082)
Browse files Browse the repository at this point in the history
  • Loading branch information
arnegns authored Feb 9, 2024
1 parent 3860503 commit c7a2809
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ describe("ExternalToolSelectionRow", () => {
item: {
logoUrl: "expectedLogoUrl",
name: "expectedName",
externalToolId: "expectedExternalToolId",
version: 1,
parameters: [],
},
maxHeight: maxHeight,
maxWidth: maxWidth,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
<template>
<v-list-item :title="item.name">
<template #prepend>
<template #prepend v-if="item.logoUrl">
<v-img
cover
v-if="item.logoUrl"
:max-height="$props.maxHeight"
:max-width="$props.maxWidth"
:max-height="maxHeight"
:max-width="maxWidth"
:src="item.logoUrl"
:width="maxHeight"
class="mx-2"
/>
</template>
Expand Down

0 comments on commit c7a2809

Please sign in to comment.