diff options
| author | Fuwn <[email protected]> | 2023-08-27 22:26:04 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-08-27 22:26:04 -0700 |
| commit | f5586b178158a3994a94f09fac5487c39a5db4d7 (patch) | |
| tree | 72c0fcf5fc357ca230bd5702e72cc250e0736107 /src | |
| parent | fix(anime): default sort mode (diff) | |
| download | due.moe-f5586b178158a3994a94f09fac5487c39a5db4d7.tar.xz due.moe-f5586b178158a3994a94f09fac5487c39a5db4d7.zip | |
feat(settings): rounding info text
Diffstat (limited to 'src')
| -rw-r--r-- | src/routes/settings/+page.svelte | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/routes/settings/+page.svelte b/src/routes/settings/+page.svelte index d29e9161..f68306ab 100644 --- a/src/routes/settings/+page.svelte +++ b/src/routes/settings/+page.svelte @@ -54,7 +54,9 @@ : roundDownChapters.set('true')} >{$roundDownChapters === 'true' ? 'Round down' : 'Maintain'} chapters</a > - <small style="opacity: 50%;">50/50.6 would <b>not</b> be due</small> + <small style="opacity: 50%;" + >50/50.6 would {@html $roundDownChapters === 'true' ? '<b>not</b>' : ''} be due</small + > </li> <li> <a |