Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
ce-deploy-ui
Manage
Activity
Members
Labels
Plan
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ccce
dev
ce-deploy-ui
Commits
e409f125
Commit
e409f125
authored
3 years ago
by
Zoltan Runyo
Browse files
Options
Downloads
Patches
Plain Diff
Fix access level handling for IOC list
parent
305f7f14
No related branches found
Branches containing commit
No related tags found
Tags containing commit
2 merge requests
!139
Merge before release
,
!128
Fix access level handling for IOC list
Pipeline
#107850
passed
3 years ago
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/views/IOC/IOCListView.js
+10
-6
10 additions, 6 deletions
src/views/IOC/IOCListView.js
with
10 additions
and
6 deletions
src/views/IOC/IOCListView.js
+
10
−
6
View file @
e409f125
...
...
@@ -8,6 +8,7 @@ import { useIOCSearch, userContext } from "../../api/SwaggerApi";
import
{
makeStyles
}
from
'
@material-ui/core/styles
'
;
import
{
initRequestParams
}
from
"
../../components/common/Helper
"
;
import
{
SearchBar
}
from
"
../../components/common/SearchBar/SearchBar
"
;
import
AccessControl
from
'
../../components/auth/AccessControl
'
;
const
useStyles
=
makeStyles
((
theme
)
=>
({
root
:
{
...
...
@@ -86,12 +87,15 @@ export function IOCListView() {
<
Paper
className
=
{
classes
.
root
}
>
<
Grid
container
spacing
=
{
1
}
>
<
Grid
item
xs
=
{
12
}
md
=
{
12
}
>
<
Box
display
=
"
flex
"
justifyContent
=
"
end
"
p
=
{
2
}
m
=
{
1
}
>
<
FormControlLabel
className
=
{
classes
.
formControl
}
control
=
{
<
Switch
checked
=
{
ownOnly
}
onChange
=
{
handleChangeOwn
}
/>
}
label
=
{
<
Typography
variant
=
"
h5
"
>
My
IOCs
<
/Typography>
}
/>
<
/Box
>
<
AccessControl
allowedRoles
=
{[
"
DeploymentToolAdmin
"
,
"
DeploymentToolIntegrator
"
]}
renderNoAccess
=
{()
=>
<><
/>}
>
<
Box
display
=
"
flex
"
justifyContent
=
"
end
"
p
=
{
2
}
m
=
{
1
}
>
<
FormControlLabel
className
=
{
classes
.
formControl
}
control
=
{
<
Switch
checked
=
{
ownOnly
}
onChange
=
{
handleChangeOwn
}
/>
}
label
=
{
<
Typography
variant
=
"
h5
"
>
My
IOCs
<
/Typography>
}
/>
<
/Box
>
<
/AccessControl
>
<
/Grid
>
<
Grid
item
xs
=
{
12
}
md
=
{
12
}
>
{
content
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment