Skip to content

Commit

Permalink
fix: optimize layout of task operations (close alist-org/alist#5673)
Browse files Browse the repository at this point in the history
  • Loading branch information
xhofe committed Dec 11, 2023
1 parent f9fd9fc commit 8520e30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/manage/tasks/Tasks.tsx
Expand Up @@ -55,7 +55,7 @@ export const Tasks = (props: TasksProps) => {
<VStack w="$full" alignItems="start" spacing="$2">
<Heading size="lg">{t(`tasks.${props.done}`)}</Heading>
<Show when={props.done === "done"}>
<HStack spacing="$2">
<HStack gap="$2" flexWrap="wrap">
<Button colorScheme="accent" loading={loading()} onClick={refresh}>
{t(`global.refresh`)}
</Button>
Expand Down

0 comments on commit 8520e30

Please sign in to comment.