fix(editor): Enable credential sharing between all types of projects (#10233)

This commit is contained in:
Csaba Tuncsik
2024-08-09 16:31:02 +02:00
committed by GitHub
parent 484737735a
commit 1cf48cc301
13 changed files with 173 additions and 96 deletions

View File

@@ -3,7 +3,7 @@
:name="modalName"
:title="title"
:center="true"
width="460px"
width="520"
:event-bus="modalBus"
@enter="onSubmit"
>
@@ -147,7 +147,7 @@ export default defineComponent({
return false;
},
projects(): ProjectListItem[] {
return this.projectsStore.personalProjects.filter(
return this.projectsStore.projects.filter(
(project) =>
project.name !==
`${this.userToDelete?.firstName} ${this.userToDelete?.lastName} <${this.userToDelete?.email}>`,