diff options
| author | Fuwn <[email protected]> | 2023-12-21 14:28:25 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-12-21 14:28:25 -0800 |
| commit | 56812de6049159325e522be13b8c9f5789e14912 (patch) | |
| tree | 928d8cb48a107ecf2f242e011725c0062afc415b /src/lib/Tools | |
| parent | feat(discussions): submit on enter (diff) | |
| download | due.moe-56812de6049159325e522be13b8c9f5789e14912.tar.xz due.moe-56812de6049159325e522be13b8c9f5789e14912.zip | |
feat(birthdays): percentage for loading
Diffstat (limited to 'src/lib/Tools')
| -rw-r--r-- | src/lib/Tools/CharacterBirthdays.svelte | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/Tools/CharacterBirthdays.svelte b/src/lib/Tools/CharacterBirthdays.svelte index 02fdad22..c6ac7e7c 100644 --- a/src/lib/Tools/CharacterBirthdays.svelte +++ b/src/lib/Tools/CharacterBirthdays.svelte @@ -84,10 +84,10 @@ </script> {#await acdbBirthdays} - <p>Loading set one ...</p> + <p>Loading 33% ...</p> {:then acdbBirthdays} {#await anisearchBirthdays} - <p>Loading set two ...</p> + <p>Loading 66% ...</p> {:then anisearch} {@const birthdays = combineBirthdaySources(acdbBirthdays, anisearch)} |