From fbf88d5bb85b86264edbdeb1f7b5b733ec1a8292 Mon Sep 17 00:00:00 2001 From: Bill Sager Date: Thu, 12 Oct 2023 13:31:03 -0700 Subject: [PATCH] Display title from deployment api call payload --- web/src/api/types/connect.ts | 2 +- .../configurePublish/PublishingHeader.vue | 24 +++++++++++++++++-- .../configurePublish/FilesToPublish.test.ts | 2 +- 3 files changed, 24 insertions(+), 4 deletions(-) diff --git a/web/src/api/types/connect.ts b/web/src/api/types/connect.ts index c7d7b9188..9e21f6739 100644 --- a/web/src/api/types/connect.ts +++ b/web/src/api/types/connect.ts @@ -13,6 +13,6 @@ export type ConnectEnvironmentVariable = { } export type ConnectDeployment = { - connect: ConnectContent; + content: ConnectContent; environment: ConnectEnvironmentVariable[]; } diff --git a/web/src/components/configurePublish/PublishingHeader.vue b/web/src/components/configurePublish/PublishingHeader.vue index b5754fac0..48f0afdd0 100644 --- a/web/src/components/configurePublish/PublishingHeader.vue +++ b/web/src/components/configurePublish/PublishingHeader.vue @@ -26,13 +26,33 @@