Skip to content

Commit

Permalink
Correctly render object title in SignalEngagementCombobox (#4002)
Browse files Browse the repository at this point in the history
  • Loading branch information
wssheldon authored and metroid-samus committed Nov 29, 2023
1 parent 4816af9 commit 1c56d63
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
pill
@click:close="remove(item)"
>
{{ item ? item.name : "Unknown" }}
{{ item ? item.title : "Unknown" }}
</v-chip>
</template>
<v-card>
Expand Down Expand Up @@ -78,7 +78,7 @@ export default {
},
label: {
type: String,
default: "Add Engagment(s)",
default: "Add Engagement(s)",
},
project: {
type: Object,
Expand Down

0 comments on commit 1c56d63

Please sign in to comment.