Skip to content

Commit

Permalink
Merge branch 'canonical:main' into allow-edit-create-instance-without…
Browse files Browse the repository at this point in the history
…-profile
  • Loading branch information
Kxiru authored May 20, 2024
2 parents 9767e19 + 7dcb459 commit 82d8fd5
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions konf/site.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ domain: lxd-ui

image: prod-comms.ps5.docker-registry.canonical.com/lxd-ui

useProxy: false

env:
- name: LXD_UI_BACKEND_IP
secretKeyRef:
Expand Down
4 changes: 2 additions & 2 deletions src/pages/storage/CreateStoragePool.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ const CreateStoragePool: FC = () => {
void queryClient.invalidateQueries({
queryKey: [queryKeys.storage],
});
navigate(`/ui/project/${project}/storage`);
navigate(`/ui/project/${project}/storage/pools`);
toastNotify.success(`Storage pool ${storagePool.name} created.`);
})
.catch((e) => {
Expand Down Expand Up @@ -100,7 +100,7 @@ const CreateStoragePool: FC = () => {
<FormFooterLayout>
<Button
appearance="base"
onClick={() => navigate(`/ui/project/${project}/storage`)}
onClick={() => navigate(`/ui/project/${project}/storage/pools`)}
>
Cancel
</Button>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/storage/actions/DeleteStoragePoolBtn.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ const DeleteStoragePoolBtn: FC<Props> = ({
void queryClient.invalidateQueries({
queryKey: [queryKeys.storage],
});
navigate(`/ui/project/${project}/storage`);
navigate(`/ui/project/${project}/storage/pools`);
toastNotify.success(`Storage pool ${pool.name} deleted.`);
})
.catch((e) => {
Expand Down

0 comments on commit 82d8fd5

Please sign in to comment.