mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-10-04 02:45:53 +08:00
Merge pull request #8699 from aignatov-bio/ai-sci-12151-update-naming-for-team-permission
Update user scope for everyone permission [SCI-12151]
This commit is contained in:
commit
dfcb69e45c
2 changed files with 2 additions and 7 deletions
|
@ -14,7 +14,7 @@
|
|||
</template>
|
||||
<template v-slot:flyout>
|
||||
<perfect-scrollbar class="flex flex-col max-h-96 max-w-[280px] relative pr-4 gap-y-px">
|
||||
<div v-for="user in this.autoAssignedUsers"
|
||||
<div v-for="user in this.assignedUsers"
|
||||
:key="user.attributes.user.id"
|
||||
:title="user.attributes.user.name"
|
||||
class="rounded px-3 py-2.5 flex items-center hover:no-underline leading-5 gap-2">
|
||||
|
@ -200,11 +200,6 @@ export default {
|
|||
return this.assignedUsers.filter((user) => (
|
||||
user.attributes?.assigned === 'manually'
|
||||
));
|
||||
},
|
||||
autoAssignedUsers() {
|
||||
return this.assignedUsers.filter((user) => (
|
||||
user.attributes?.assigned === 'automatically'
|
||||
));
|
||||
}
|
||||
},
|
||||
data() {
|
||||
|
|
|
@ -4571,7 +4571,7 @@ en:
|
|||
|
||||
access_permissions:
|
||||
all_team: "all workspace"
|
||||
everyone_else: "Everyone else at %{team_name}"
|
||||
everyone_else: "Everyone at %{team_name}"
|
||||
reset: "Inherit role"
|
||||
remove_access: "Remove access"
|
||||
grant_access: "Grant new access"
|
||||
|
|
Loading…
Add table
Reference in a new issue