generated from xhofe/solid-lib
-
Notifications
You must be signed in to change notification settings - Fork 479
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* wip: adapt new api * Squashed commit of the following: commit 82869dd Author: Andy Hsu <i@nn.ci> Date: Thu Oct 26 19:25:16 2023 +0800 chore: change ts query key commit 1243b9f Author: Isla <bot@nn.ci> Date: Thu Oct 26 11:24:14 2023 +0000 style: format code with prettier commit 4f7d9c8 Author: IlaBot <bot@nn.ci> Date: Thu Oct 26 11:23:31 2023 +0000 chore: auto update i18n file commit d7febf8 Author: Andy Hsu <i@nn.ci> Date: Sun Oct 22 20:39:01 2023 +0800 fix: missing font of katex (close AlistGo/alist#5417) commit ab6701c Author: Andy Hsu <i@nn.ci> Date: Sun Oct 22 19:05:48 2023 +0800 feat: add shortcut for text save (close AlistGo/alist#5396) commit 04d98e9 Author: Isla <bot@nn.ci> Date: Thu Oct 12 13:00:33 2023 +0000 style: format code with prettier commit cb4ee21 Author: IlaBot <bot@nn.ci> Date: Thu Oct 12 12:59:48 2023 +0000 chore: auto update i18n file * chore: main updates (#119) * chore: auto update i18n file * style: format code with prettier * feat: add shortcut for text save (close AlistGo/alist#5396) * fix: missing font of katex (close AlistGo/alist#5417) * chore: auto update i18n file * style: format code with prettier * chore: change ts query key * chore: auto update i18n file * style: format code with prettier * fix: package download setting does not take effect (close AlistGo/alist#5478) * feat: audio player use list order by default (#115) --------- Co-authored-by: IlaBot <bot@nn.ci> Co-authored-by: 22 <60903333+nini22P@users.noreply.github.com> --------- Co-authored-by: IlaBot <bot@nn.ci> Co-authored-by: 22 <60903333+nini22P@users.noreply.github.com>
- Loading branch information
1 parent
a392bea
commit 6cb6af8
Showing
6 changed files
with
66 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import { VStack } from "@hope-ui/solid" | ||
import { useManageTitle } from "~/hooks" | ||
import { TypeTasks } from "./Tasks" | ||
|
||
const OfflineDownload = () => { | ||
useManageTitle("manage.sidemenu.offline_download") | ||
return ( | ||
<VStack w="$full" alignItems="start" spacing="$4"> | ||
<TypeTasks type="offline_download" canRetry /> | ||
<TypeTasks type="offline_download_transfer" /> | ||
</VStack> | ||
) | ||
} | ||
|
||
export default OfflineDownload |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters