diff --git a/client/src/pages/tools/linux/InstallSoftware/components/ConfigurationArea/ConfigurationArea.jsx b/client/src/pages/tools/linux/InstallSoftware/components/ConfigurationArea/ConfigurationArea.jsx index b440e1d..447bd7f 100644 --- a/client/src/pages/tools/linux/InstallSoftware/components/ConfigurationArea/ConfigurationArea.jsx +++ b/client/src/pages/tools/linux/InstallSoftware/components/ConfigurationArea/ConfigurationArea.jsx @@ -105,7 +105,7 @@ export const ConfigurationArea = ({current}) => { })} {servers.length !== 0 && { - return {value: server.id, text: server.hostname} + return {value: server.id, text: (server.name || "Unbenannt") + " (" + server.hostname + ")"} })} value={selectedServer} setValue={setSelectedServer} />}