-
-
Notifications
You must be signed in to change notification settings - Fork 157
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix link to projects in Portfolio Access Control view #774
Conversation
Signed-off-by: Lukas Braune <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To overcome the prettier issue, I suggest using this format.
@@ -124,7 +124,10 @@ export default {
}
},
projectUri: function (uuid) {
- const href = router.resolve({name: 'Project', params: {uuid: uuid}}).href;
+ const href = router.resolve({
+ name: 'Project',
+ params: { uuid: uuid },
+ }).href;
const sanitizedHref = xssFilters.uriInUnQuotedAttr(href);
return sanitizedHref;
},
Signed-off-by: Lukas Braune <[email protected]>
src/views/administration/accessmanagement/PortfolioAccessControl.vue
Outdated
Show resolved
Hide resolved
The joys of enforcing consistent formatting... :D You can apply the required formatting automatically by running npm run prettier-fix |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I forgot about that, just a simple ;
src/views/administration/accessmanagement/PortfolioAccessControl.vue
Outdated
Show resolved
Hide resolved
Co-authored-by: Andrés Tito <[email protected]> Signed-off-by: Lukas Braune <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks both!
Description
Fix link to projects in Portfolio Access Control view
Addressed Issue
Fixes #676
Additional Details
Checklist