From 7529f12c2effad5298b54984e588537a60b3654c Mon Sep 17 00:00:00 2001 From: RachelElysia <71795832+RachelElysia@users.noreply.github.com> Date: Wed, 12 Nov 2025 11:14:25 -0500 Subject: [PATCH] Fleet UI: handle displayname for vpp (#35535) --- frontend/services/entities/mdm_apple.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/services/entities/mdm_apple.ts b/frontend/services/entities/mdm_apple.ts index 24e325c81a..44b9b3dfc5 100644 --- a/frontend/services/entities/mdm_apple.ts +++ b/frontend/services/entities/mdm_apple.ts @@ -41,6 +41,7 @@ export interface IEditVppAppPostBody { labels_include_any?: string[]; labels_exclude_any?: string[]; categories?: SoftwareCategory[]; + display_name?: string; } export interface IGetVppAppsResponse { @@ -62,9 +63,8 @@ const handleDisplayNameVppForm = ( teamId: number ): IEditVppAppPostBody => { return { - self_service: false, // or some default as needed + display_name: formData.displayName, team_id: teamId, - // you might not need categories/labels with this form }; };