feat(frontend): added `profiles` to `IEditServiceForm` interface

* Marked `profiles` as optional in `IService` interface.
pull/85/head
Samuel Rowe 3 years ago
parent 0424141b0d
commit 22c9ca3f6e

@ -258,7 +258,7 @@ export interface IService {
mode: string;
};
privileged: boolean;
profiles: string;
profiles?: string[];
pull_policy: string;
read_only: boolean;
restart: string;
@ -364,6 +364,7 @@ export interface IEditServiceForm {
imageName: string;
imageTag: string;
containerName: string;
profiles: string[];
ports: {
hostPort: string;
containerPort: string;

Loading…
Cancel
Save