Skip to content

Commit

Permalink
bugfix/admin-buttons (#191)
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinJJackson authored Nov 13, 2023
1 parent e075713 commit d3d89f3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ const AlertConfigList = connect(

return (
<div>
<RoleFilter allowRoles={[`${project.slug.toUpperCase()}.ADMIN}`]}>
<RoleFilter allowRoles={[`${project.slug.toUpperCase()}.ADMIN`]}>
<Button
isOutline
variant='success'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const EvaluationList = connect(
projectsByRoute: project,
}) => (
<div>
<RoleFilter allowRoles={[`${project.slug.toUpperCase()}.ADMIN}`]}>
<RoleFilter allowRoles={[`${project.slug.toUpperCase()}.ADMIN`]}>
<Button
isOutline
variant='success'
Expand Down

0 comments on commit d3d89f3

Please sign in to comment.