mirror of
https://github.com/jeffvli/feishin.git
synced 2026-07-23 02:46:40 +02:00
disable single attribute per line
This commit is contained in:
@@ -73,10 +73,7 @@ export const ServerList = () => {
|
||||
{Object.keys(serverListQuery)?.map((serverId) => {
|
||||
const server = serverListQuery[serverId];
|
||||
return (
|
||||
<Accordion.Item
|
||||
key={server.id}
|
||||
value={server.name}
|
||||
>
|
||||
<Accordion.Item key={server.id} value={server.name}>
|
||||
<Accordion.Control>
|
||||
<Group>
|
||||
<img
|
||||
@@ -103,10 +100,7 @@ export const ServerList = () => {
|
||||
</Accordion.Item>
|
||||
);
|
||||
})}
|
||||
<Group
|
||||
grow
|
||||
pt="md"
|
||||
>
|
||||
<Group grow pt="md">
|
||||
<Button
|
||||
autoFocus
|
||||
leftSection={<Icon icon="add" />}
|
||||
|
||||
Reference in New Issue
Block a user