mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-25 20:54:07 -08:00
fix(editor): Fix project settings layout (#9475)
This commit is contained in:
parent
711c46f205
commit
96cf41f851
|
@ -290,8 +290,9 @@ onBeforeMount(async () => {
|
|||
:delete-label="$locale.baseText('workflows.shareModal.list.delete')"
|
||||
>
|
||||
<template #actions="{ user }">
|
||||
<div class="flex gap-3">
|
||||
<div :class="$style.buttons">
|
||||
<N8nSelect
|
||||
class="mr-2xs"
|
||||
:model-value="user?.role || projectRoles[0].role"
|
||||
size="small"
|
||||
@update:model-value="onRoleAction(user, $event)"
|
||||
|
@ -325,7 +326,7 @@ onBeforeMount(async () => {
|
|||
</template>
|
||||
</N8nUsersList>
|
||||
</fieldset>
|
||||
<fieldset class="flex justify-end items-center">
|
||||
<fieldset :class="$style.buttons">
|
||||
<div>
|
||||
<small v-if="isDirty" class="mr-2xs">{{
|
||||
locale.baseText('projects.settings.message.unsavedChanges')
|
||||
|
@ -409,4 +410,10 @@ onBeforeMount(async () => {
|
|||
.upgrade {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.buttons {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
align-items: center;
|
||||
}
|
||||
</style>
|
||||
|
|
|
@ -164,7 +164,7 @@ watch(
|
|||
width: 100%;
|
||||
align-items: center;
|
||||
padding: var(--spacing-2xs) 0;
|
||||
gap: var(--spacing-xs);
|
||||
gap: var(--spacing-2xs);
|
||||
}
|
||||
|
||||
.selectedProjects {
|
||||
|
|
Loading…
Reference in a new issue