Skip to content

Commit

Permalink
fix: Internal user marked as external in people and space members - E…
Browse files Browse the repository at this point in the history
…XO-71462 - Meeds-io/meeds#2572

Before this change, the user is marked as external on his card or people page and space members after remove the user from /platform/externals. To resolve this problem, change the display condition value of this component from boolean to String. After this change, the user is marked as external on his hard for people page and space members.

(cherry picked from commit 98d066d)
  • Loading branch information
Jihed525 authored Nov 8, 2024
1 parent cf419b9 commit 7f8814c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ export default {
return this.user?.enabled;
},
externalUser() {
return this.user?.external;
return this.user?.external === 'true';
},
profileUrl() {
return `${eXo.env.portal.context}/${eXo.env.portal.metaPortalName}/profile/${this.user?.username}`;
Expand Down

0 comments on commit 7f8814c

Please sign in to comment.