entity-selection-list-component #216

Merged
jose merged 13 commits from entity-selection-list-component into master 2025-11-05 08:25:36 +00:00
Showing only changes of commit 82fd7cddf7 - Show all commits

View File

@@ -61,6 +61,7 @@ projects, and special entities with selection. * * @author Matthew Raymer */
<!-- "Unnamed" entity -->
<SpecialEntityCard
v-if="showUnnamedEntity"
entity-type="unnamed"
:label="unnamedEntityName"
icon="circle-question"
@@ -175,6 +176,10 @@ export default class EntityGrid extends Vue {
@Prop({ default: true })
showYouEntity!: boolean;
/** Whether to show the "Unnamed" entity for people grids */
@Prop({ default: true })
showUnnamedEntity!: boolean;
/** Whether the "You" entity is selectable */
@Prop({ default: true })
youSelectable!: boolean;