Skip to content

Commit

Permalink
fix: Fix Space URL computing using new Web Controller Handler - MEED-…
Browse files Browse the repository at this point in the history
  • Loading branch information
boubaker committed Oct 7, 2024
1 parent f094bd1 commit 4289d5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kudos-webapps/src/main/webapp/vue-app/js/Kudos.js
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@ export function registerActivityActionExtension() {
enabled: String(kudos.enabledReceiver),
identityType: kudos.receiverType,
};
const url = kudos.receiverType === 'user' ? `${eXo.env.portal.context}/${eXo.env.portal.metaPortalName}/profile/${kudos.receiverId}` : `${eXo.env.portal.context}/s/${kudos.technicalId}`;
const url = kudos.receiverType === 'user' ? `${eXo.env.portal.context}/${eXo.env.portal.metaPortalName}/profile/${kudos.receiverId}` : `${eXo.env.portal.context}/s/${kudos.receiverIdentityId}`;
return {
key: 'NewKudosSentActivityComment.activity_kudos_title',
params: {
Expand Down

0 comments on commit 4289d5e

Please sign in to comment.