diff --git a/src/components/EntityGrid.vue b/src/components/EntityGrid.vue index a27ab84ba8..bb0916f8a5 100644 --- a/src/components/EntityGrid.vue +++ b/src/components/EntityGrid.vue @@ -57,8 +57,8 @@ projects, and special entities with selection. * * @author Matthew Raymer */ :selectable="youSelectable" :conflicted="youConflicted" :entity-data="youEntityData" - :notify="notify" :conflict-context="conflictContext" + :notify="notify" @entity-selected="handleEntitySelected" /> @@ -69,8 +69,8 @@ projects, and special entities with selection. * * @author Matthew Raymer */ :label="unnamedEntityName" icon="circle-question" :entity-data="unnamedEntityData" - :notify="notify" :conflict-context="conflictContext" + :notify="notify" @entity-selected="handleEntitySelected" /> @@ -97,8 +97,8 @@ projects, and special entities with selection. * * @author Matthew Raymer */ :person="person" :conflicted="isPersonConflicted(person.did)" :show-time-icon="true" - :notify="notify" :conflict-context="conflictContext" + :notify="notify" @person-selected="handlePersonSelected" /> @@ -116,8 +116,8 @@ projects, and special entities with selection. * * @author Matthew Raymer */ :person="person" :conflicted="isPersonConflicted(person.did)" :show-time-icon="true" - :notify="notify" :conflict-context="conflictContext" + :notify="notify" @person-selected="handlePersonSelected" /> @@ -131,8 +131,8 @@ projects, and special entities with selection. * * @author Matthew Raymer */ :person="person" :conflicted="isPersonConflicted(person.did)" :show-time-icon="true" - :notify="notify" :conflict-context="conflictContext" + :notify="notify" @person-selected="handlePersonSelected" /> @@ -156,8 +156,8 @@ projects, and special entities with selection. * * @author Matthew Raymer */ :all-my-dids="allMyDids" :all-contacts="allContacts" :conflicted="isProjectConflicted(project.handleId)" - :notify="notify" :conflict-context="conflictContext" + :notify="notify" @project-selected="handleProjectSelected" /> @@ -177,8 +177,8 @@ projects, and special entities with selection. * * @author Matthew Raymer */ :all-my-dids="allMyDids" :all-contacts="allContacts" :conflicted="isProjectConflicted(project.handleId)" - :notify="notify" :conflict-context="conflictContext" + :notify="notify" @project-selected="handleProjectSelected" /> @@ -193,8 +193,8 @@ projects, and special entities with selection. * * @author Matthew Raymer */ :all-my-dids="allMyDids" :all-contacts="allContacts" :conflicted="isProjectConflicted(project.handleId)" - :notify="notify" :conflict-context="conflictContext" + :notify="notify" @project-selected="handleProjectSelected" /> diff --git a/src/components/EntitySelectionStep.vue b/src/components/EntitySelectionStep.vue index 40a310107d..c10ee69bf0 100644 --- a/src/components/EntitySelectionStep.vue +++ b/src/components/EntitySelectionStep.vue @@ -29,9 +29,9 @@ properties * * @author Matthew Raymer */ :all-my-dids="allMyDids" :all-contacts="allContacts" :conflict-checker="conflictChecker" - :you-selectable="youSelectable" - :notify="notify" :conflict-context="conflictContext" + :notify="notify" + :you-selectable="youSelectable" @entity-selected="handleEntitySelected" />