mirror of https://github.com/portainer/portainer
fix(volumes): fix broken volume browse button EE-6274 (#10566)
parent
8daf77c3b6
commit
600c8a3025
|
@ -89,7 +89,19 @@ function Cell({
|
|||
</Link>
|
||||
{isBrowseVisible && (
|
||||
<Authorized authorizations="DockerAgentBrowseList">
|
||||
<Button icon={Search} color="primary" size="xsmall" as={Link}>
|
||||
<Button
|
||||
icon={Search}
|
||||
color="primary"
|
||||
size="xsmall"
|
||||
as={Link}
|
||||
props={{
|
||||
to: 'docker.volumes.volume.browse',
|
||||
params: {
|
||||
id: item.Id,
|
||||
nodeName: item.NodeName,
|
||||
},
|
||||
}}
|
||||
>
|
||||
browse
|
||||
</Button>
|
||||
</Authorized>
|
||||
|
|
Loading…
Reference in New Issue