mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
refactor(editor): Improve linting for component and prop names (no-changelog) (#8169)
This commit is contained in:
committed by
GitHub
parent
639afcd7a5
commit
68cff4c59e
@@ -76,11 +76,11 @@ const menuHeight = computed(() => {
|
||||
popper-class="user-stack-popper"
|
||||
>
|
||||
<div :class="$style.avatars" data-test-id="user-stack-avatars">
|
||||
<n8n-avatar
|
||||
<N8nAvatar
|
||||
v-for="user in flatUserList.slice(0, visibleAvatarCount)"
|
||||
:key="user.id"
|
||||
:firstName="user.firstName"
|
||||
:lastName="user.lastName"
|
||||
:first-name="user.firstName"
|
||||
:last-name="user.lastName"
|
||||
:class="$style.avatar"
|
||||
:data-test-id="`user-stack-avatar-${user.id}`"
|
||||
size="small"
|
||||
@@ -101,9 +101,9 @@ const menuHeight = computed(() => {
|
||||
:data-test-id="`user-stack-info-${user.id}`"
|
||||
:class="$style.userInfoContainer"
|
||||
>
|
||||
<n8n-user-info
|
||||
<N8nUserInfo
|
||||
v-bind="user"
|
||||
:isCurrentUser="user.email === props.currentUserEmail"
|
||||
:is-current-user="user.email === props.currentUserEmail"
|
||||
/>
|
||||
</el-dropdown-item>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user