refactor property ordering (no logic changes)

This commit is contained in:
2026-01-20 19:56:11 -07:00
parent 09c38a8b1c
commit 2684484a84
2 changed files with 10 additions and 10 deletions

View File

@@ -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"
/>
</template>
@@ -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"
/>
</template>
@@ -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"
/>
</template>
@@ -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"
/>
</template>
@@ -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"
/>
</template>
@@ -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"
/>
</template>
@@ -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"
/>
</template>

View File

@@ -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"
/>