Skip to content

Commit

Permalink
fix(ui): show group id in dialog dropdown (#1239)
Browse files Browse the repository at this point in the history
Ref #1232
  • Loading branch information
robertsLando authored May 18, 2021
1 parent ae9f153 commit a41c8b3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/components/dialogs/DialogAssociation.vue
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,9 @@
<template v-slot:item="{ item, attrs, on }">
<v-list-item v-on="on" v-bind="attrs" two-line>
<v-list-item-content>
<v-list-item-title>{{ item.text }}</v-list-item-title>
<v-list-item-title>{{
`[${item.value}] ${item.text}`
}}</v-list-item-title>
<v-list-item-subtitle>{{
item.endpoint >= 0 ? 'Endpoint ' + item.endpoint : ''
}}</v-list-item-subtitle>
Expand Down

0 comments on commit a41c8b3

Please sign in to comment.