From 173b70309c67d8d6661847c638da9ca1a7d0bdce Mon Sep 17 00:00:00 2001 From: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com> Date: Tue, 29 Apr 2025 16:53:24 -0500 Subject: [PATCH] fix gpu info i18n keys --- web/src/components/overlay/GPUInfoDialog.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/web/src/components/overlay/GPUInfoDialog.tsx b/web/src/components/overlay/GPUInfoDialog.tsx index d4752aa2f3..549a9f9db6 100644 --- a/web/src/components/overlay/GPUInfoDialog.tsx +++ b/web/src/components/overlay/GPUInfoDialog.tsx @@ -108,7 +108,7 @@ export default function GPUInfoDialog({
{t("general.hardwareInfo.gpuInfo.nvidiaSMIOutput.driver", { - name: nvinfo["0"].driver, + driver: nvinfo["0"].driver, })}

@@ -116,14 +116,14 @@ export default function GPUInfoDialog({ {t( "general.hardwareInfo.gpuInfo.nvidiaSMIOutput.cudaComputerCapability", { - name: nvinfo["0"].cuda_compute, + cuda_compute: nvinfo["0"].cuda_compute, }, )}
{t("general.hardwareInfo.gpuInfo.nvidiaSMIOutput.vbios", { - name: nvinfo["0"].vbios, + vbios: nvinfo["0"].vbios, })}