From a7b9f76ef32bc4f593923cdda510d31540152ec5 Mon Sep 17 00:00:00 2001 From: Timon Date: Mon, 30 Dec 2024 00:54:52 +0100 Subject: [PATCH] feat(spa): add deployments (#967) Signed-off-by: Timon Masberg Co-authored-by: Jasper Herzberg --- CONTRIBUTING.md | 10 +++++----- libs/spa/view/dashboard/src/lib/dashboard.component.ts | 1 + 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index ec7b0a2bc..948da6dd7 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -67,11 +67,11 @@ generate a new component, run `npx nx g @nrwl/angular:component --project=spa- --name=`. This will generate a new component in the correct folder. For more information, check out the [NX documentation]https://nx.dev/more-concepts/nx-and-angular). By -default the Component will be standalone and with `OnPush` Change Detection. -Please try to stick to this as much as possible. You can serve the SPA with -`npm run serve:spa`. Instead of an OAuth Provider, in development environments -you will get redirected to a login page where you can choose a persona. This -will set a JWT in the local storage. +default the Component will be standalone and with `OnPush` Change Detection. Please +try to stick to this as much as possible. You can serve the SPA with `npm run serve:spa`. +Instead of an OAuth Provider, in development environments you will get redirected +to a login page where you can choose a persona. This will set a JWT in the local +storage. We agreed on supporting only Chromium based browsers with their 2 latest major versions. This allows us to use features that are available for these browsers diff --git a/libs/spa/view/dashboard/src/lib/dashboard.component.ts b/libs/spa/view/dashboard/src/lib/dashboard.component.ts index 2f221aa18..237c95b85 100644 --- a/libs/spa/view/dashboard/src/lib/dashboard.component.ts +++ b/libs/spa/view/dashboard/src/lib/dashboard.component.ts @@ -28,6 +28,7 @@ import { ProtocolViewComponent } from '@kordis/spa/feature/protocol'; NzMenuModule, NzModalModule, ProtocolViewComponent, + DeploymentsComponent, ], templateUrl: './dashboard.component.html', styleUrl: './dashboard.component.css',