This commit is contained in:
2020-09-20 17:28:09 +02:00
parent ef2a02577e
commit 142685b306
14 changed files with 672 additions and 287 deletions

View File

@@ -0,0 +1,10 @@
<script>
import dj from 'dayjs'
import { Logs } from '../../shared/db.js'
export let rules = []
</script>
{#each rules as rule}
<div>{dj.duration(...rule.limit).humanize()} / {dj.duration(...rule.every).humanize()}</div>
{/each}