feat: Show SubInfo for Proxy Provider

#211
This commit is contained in:
MystiPanda
2024-01-18 14:26:35 +08:00
parent 69ae86aba8
commit e970880059
3 changed files with 70 additions and 4 deletions

View File

@@ -76,8 +76,17 @@ export const ProviderButton = () => {
const time = dayjs(item.updatedAt);
return (
<>
<ListItem sx={{ p: 0 }} key={key}>
<ListItem
sx={(theme) => ({
p: 0,
borderRadius: "10px",
boxShadow: theme.shadows[2],
mb: 1,
})}
key={key}
>
<ListItemText
sx={{ px: 1 }}
primary={
<>
<Typography
@@ -107,6 +116,7 @@ export const ProviderButton = () => {
</>
}
/>
<Divider orientation="vertical" flexItem />
<IconButton
size="small"
color="inherit"
@@ -116,7 +126,6 @@ export const ProviderButton = () => {
<RefreshRounded />
</IconButton>
</ListItem>
<Divider />
</>
);
})}