mirror of
https://github.com/portainer/portainer.git
synced 2025-07-24 15:59:41 +02:00
feat(helm): add registry dropdown [r8s-340] (#779)
This commit is contained in:
parent
c9e3717ce3
commit
1963edda66
16 changed files with 288 additions and 190 deletions
|
@ -43,7 +43,7 @@ vi.mock('../queries/useUpdateHelmReleaseMutation', () => ({
|
|||
})),
|
||||
}));
|
||||
|
||||
vi.mock('../queries/useHelmRepositories', () => ({
|
||||
vi.mock('../queries/useHelmRepoVersions', () => ({
|
||||
useHelmRepoVersions: vi.fn(() => ({
|
||||
data: [
|
||||
{ Version: '1.0.0', AppVersion: '1.0.0' },
|
||||
|
@ -75,6 +75,8 @@ const mockChart: Chart = {
|
|||
annotations: {
|
||||
category: 'database',
|
||||
},
|
||||
version: '1.0.1',
|
||||
versions: ['1.0.0', '1.0.1'],
|
||||
};
|
||||
|
||||
const mockRouterStateService = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue