From 14b3350eaa87862af76af20fba1a4e9bef9541a5 Mon Sep 17 00:00:00 2001 From: Ian Littman Date: Tue, 14 Oct 2025 10:18:29 -0500 Subject: [PATCH] Fix icon key name in "View YAML" modal (#34140) Fixes #34060. - [x] QA'd all new/changed functionality manually For unreleased bug fixes in a release candidate, one of: - [x] Confirmed that the fix is not expected to adversely impact load test results --- .../SoftwareTitleDetailsPage/ViewYamlModal/helpers.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/pages/SoftwarePage/SoftwareTitleDetailsPage/ViewYamlModal/helpers.tsx b/frontend/pages/SoftwarePage/SoftwareTitleDetailsPage/ViewYamlModal/helpers.tsx index cb9a174a05..534bcaf022 100644 --- a/frontend/pages/SoftwarePage/SoftwareTitleDetailsPage/ViewYamlModal/helpers.tsx +++ b/frontend/pages/SoftwarePage/SoftwareTitleDetailsPage/ViewYamlModal/helpers.tsx @@ -194,7 +194,7 @@ export const createPackageYaml = ({ } if (iconUrl) { - yaml += ` icon_url: + yaml += ` icon: path: ./icons/${hyphenatedSWTitle}-icon.png `; }