feat(ui): make need for refresh more visible when upgrading server

Signed-off-by: Deluan <deluan@navidrome.org>
This commit is contained in:
Deluan
2025-02-21 18:15:25 -05:00
parent 74348a340f
commit f34f15ba1c
3 changed files with 68 additions and 11 deletions
+4 -1
View File
@@ -4,12 +4,15 @@ import { LinkToVersion } from './AboutDialog'
import TableBody from '@material-ui/core/TableBody'
import TableRow from '@material-ui/core/TableRow'
import Table from '@material-ui/core/Table'
import TableCell from '@material-ui/core/TableCell'
const Wrapper = ({ version }) => (
<Table>
<TableBody>
<TableRow>
<LinkToVersion version={version} />
<TableCell>
<LinkToVersion version={version} />
</TableCell>
</TableRow>
</TableBody>
</Table>