Skip to content

Commit 590ba3c

Browse files
authored
fix: original startup settings values not being updated with new state we send to server (#4761)
1 parent 2967134 commit 590ba3c

File tree

1 file changed

+4
-0
lines changed
  • apps/frontend/src/pages/servers/manage/[id]/options

1 file changed

+4
-0
lines changed

apps/frontend/src/pages/servers/manage/[id]/options/startup.vue

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -199,6 +199,10 @@ async function saveStartup() {
199199
jdkVersionMap.find((v) => v.value === props.server.startup?.jdk_version)?.label || ''
200200
jdkBuild.value =
201201
jdkBuildMap.find((v) => v.value === props.server.startup?.jdk_build)?.label || ''
202+
203+
originalInvocation.value = invocation.value
204+
originalJdkVersion.value = jdkVersion.value
205+
originalJdkBuild.value = jdkBuild.value
202206
}
203207
204208
addNotification({

0 commit comments

Comments
 (0)