1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-08-05 05:45:22 +02:00

refactor(azure/aci): migrate sidebar to react [EE-2569] (#6593)

* refactor(azure/aci): migrate sidebar to react [EE-2569]

* add test files

* add story

* fix(sidebar): get styles from sidebar

* make suggested changes + update icon story

* use template in second story + change some english

* use camel case in test

* use icon instead of span

* refactor(types): use existing environmentid type

Co-authored-by: Chaim Lev-Ari <chiptus@gmail.com>
This commit is contained in:
itsconquest 2022-03-14 19:26:30 +13:00 committed by GitHub
parent 5188ead870
commit f2c48409e0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
12 changed files with 224 additions and 29 deletions

View file

@ -1,5 +1,6 @@
import angular from 'angular';
import { AzureSidebarAngular } from './AzureSidebar/AzureSidebar';
import { DashboardViewAngular } from './Dashboard/DashboardView';
import { containerInstancesModule } from './ContainerInstances';
@ -82,4 +83,5 @@ angular
$stateRegistryProvider.register(dashboard);
},
])
.component('dashboardView', DashboardViewAngular).name;
.component('azureSidebar', AzureSidebarAngular)
.component('dashboardView', DashboardViewAngular);