File tree 1 file changed +18
-2
lines changed
src/containers/execution-environment-list
1 file changed +18
-2
lines changed Original file line number Diff line number Diff line change 8
8
ToolbarItem ,
9
9
ToolbarContent ,
10
10
Tooltip ,
11
+ Button ,
11
12
} from '@patternfly/react-core' ;
12
13
import { ExecutionEnvironmentAPI , ExecutionEnvironmentType } from 'src/api' ;
13
14
import { filterIsSet , ParamHelper } from 'src/utilities' ;
@@ -89,8 +90,23 @@ class ExecutionEnvironmentList extends React.Component<
89
90
< BaseHeader title = 'Container Registry' > </ BaseHeader >
90
91
{ noData && ! loading ? (
91
92
< EmptyStateNoData
92
- title = { 'No container registries' }
93
- description = { 'Container registries will appear once uploaded' }
93
+ title = { 'No container repositories yet' }
94
+ description = {
95
+ 'You currently have no container repositories. Add a container repository via the CLI to get started.'
96
+ }
97
+ button = {
98
+ < Button
99
+ variant = 'link'
100
+ onClick = { ( ) =>
101
+ window . open (
102
+ 'https://https://access.redhat.com/documentation/en-us/red_hat_ansible_automation_platform/2.0/html/managing_containers_in_private_automation_hub/index' ,
103
+ '_blank' ,
104
+ )
105
+ }
106
+ >
107
+ Push private images
108
+ </ Button >
109
+ }
94
110
/>
95
111
) : (
96
112
< Main >
You can’t perform that action at this time.
0 commit comments