Skip to content
This repository was archived by the owner on May 30, 2024. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ui/src/components/RepoSettingsForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,13 +60,13 @@ export default function RepoSettingForm(props: RepoSettingsFormProps): JSX.Eleme
{(props.repo.locked)?
<Button
danger
type="primary"
onClick={props.onClickUnlock}
>
UNLOCK REPOSITORY
</Button>:
<Button
danger
type="primary"
onClick={props.onClickLock}
>
LOCK REPOSITORY
Expand Down
1 change: 1 addition & 0 deletions ui/src/views/RepoDeploy.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ export default function RepoDeploy(): JSX.Element {
await dispatch(actions.setDisplay(true))
await dispatch(fetchBranches())
await dispatch(fetchTags())
await dispatch(searchCandidates(""))
}
f()
// eslint-disable-next-line
Expand Down
1 change: 1 addition & 0 deletions ui/src/views/RepoRollback.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ export default function RepoHome(): JSX.Element {
await dispatch(init({namespace, name}))
await dispatch(fetchConfig())
await dispatch(actions.setDisplay(true))
await dispatch(searchCandidates(""))
}
f()
// eslint-disable-next-line
Expand Down