Skip to content

Commit

Permalink
Speaking naming
Browse files Browse the repository at this point in the history
  • Loading branch information
ksuess committed Feb 26, 2024
1 parent 2884f46 commit e49d4e5
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import { updateGroup, listUsers } from '@plone/volto/actions';

import down_key from '@plone/volto/icons/down-key.svg';

const ListingTemplate = ({
const UserGroupMembershipListing = ({
query_user, // Show users on y-axis that match
query_group, // Show groups on y-axis that match
groups_filter, // show members of these groups
Expand Down Expand Up @@ -201,6 +201,10 @@ const ListingTemplate = ({

return (
<div className="administration_matrix">
<div>
<b>current user:</b>
{JSON.stringify(user)}
</div>
{matrix_options && matrix_options?.length > 0 && (
<div className="label-options">
<div className="target-labels">
Expand Down Expand Up @@ -314,4 +318,4 @@ const ListingTemplate = ({
</div>
);
};
export default ListingTemplate;
export default UserGroupMembershipListing;

0 comments on commit e49d4e5

Please sign in to comment.