From 7b49b551d56ca51bb5a5b0658fbc545228b46a4e Mon Sep 17 00:00:00 2001 From: Sean Sube Date: Wed, 18 Jan 2023 08:01:59 -0600 Subject: [PATCH] fix(gui): add server version indicator to settings --- gui/src/components/Settings.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/gui/src/components/Settings.tsx b/gui/src/components/Settings.tsx index 0c3195bc..87f1c04d 100644 --- a/gui/src/components/Settings.tsx +++ b/gui/src/components/Settings.tsx @@ -1,6 +1,6 @@ import { mustExist } from '@apextoaster/js-utils'; import { Refresh } from '@mui/icons-material'; -import { Button, Stack, TextField } from '@mui/material'; +import { Alert, Button, Chip, Stack, TextField } from '@mui/material'; import * as React from 'react'; import { useContext, useState } from 'react'; import { useStore } from 'zustand'; @@ -43,6 +43,9 @@ export function Settings() { query.set('api', root); window.location.search = query.toString(); }} /> + + {config.params.version} +