From 99ef8e931069f6fdf8857e63870696590b369b28 Mon Sep 17 00:00:00 2001 From: CityFun <31820853+zhengkunwang223@users.noreply.github.com> Date: Mon, 16 Jun 2025 16:50:51 +0800 Subject: [PATCH] fix: fix issue with edit dotnet environment failed (#9121) Refs https://github.com/1Panel-dev/1Panel/issues/9083 --- frontend/src/views/website/runtime/dotnet/operate/index.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/src/views/website/runtime/dotnet/operate/index.vue b/frontend/src/views/website/runtime/dotnet/operate/index.vue index 2c9dc8c4c..395c9cc5e 100644 --- a/frontend/src/views/website/runtime/dotnet/operate/index.vue +++ b/frontend/src/views/website/runtime/dotnet/operate/index.vue @@ -186,6 +186,7 @@ const getRuntime = async (id: number) => { port: data.port, }); runtime.exposedPorts = data.exposedPorts || []; + runtime.environments = data.environments || []; editParams.value = data.appParams; open.value = true; } catch (error) {}