Skip to content

Commit

Permalink
label changed for image pull policy in app creation and app settings …
Browse files Browse the repository at this point in the history
…page
  • Loading branch information
nxtcoder36 committed Mar 15, 2024
1 parent d70fe15 commit bcc481a
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 @@ -266,7 +266,7 @@ const SettingCompute = () => {
/>

<Checkbox
label="Image Pull Policy"
label="Always pull image on restart"
checked={values.imagePullPolicy === 'Always'}
onChange={(val) => {
const imagePullPolicy = val ? 'Always' : 'IfNotPresent';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ const AppCompute = () => {
/>

<Checkbox
label="Image Pull Policy"
label="Always pull image on restart"
checked={values.imagePullPolicy === 'Always'}
onChange={(val) => {
const imagePullPolicy = val ? 'Always' : 'IfNotPresent';
Expand Down

0 comments on commit bcc481a

Please sign in to comment.