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; mode: string;
}; };
privileged: boolean; privileged: boolean;
profiles: string; profiles?: string[];
pull_policy: string; pull_policy: string;
read_only: boolean; read_only: boolean;
restart: string; restart: string;
@ -364,6 +364,7 @@ export interface IEditServiceForm {
imageName: string; imageName: string;
imageTag: string; imageTag: string;
containerName: string; containerName: string;
profiles: string[];
ports: { ports: {
hostPort: string; hostPort: string;
containerPort: string; containerPort: string;

Loading…
Cancel
Save