mirror of
https://github.com/Garmelon/Arbeitszeitdokumentationsgenerator.git
synced 2026-04-13 01:05:04 +02:00
Satisfy clippy
This commit is contained in:
parent
b174b796ed
commit
14ef0bb122
1 changed files with 45 additions and 43 deletions
|
|
@ -219,7 +219,8 @@ pub async fn get() -> Document {
|
|||
div("(hh:mm)"),
|
||||
div("(hh:mm)"),
|
||||
div(()),
|
||||
iter::repeat((
|
||||
iter::repeat_n(
|
||||
(
|
||||
div(input((
|
||||
attr::class("i-task"),
|
||||
attr::name("task"),
|
||||
|
|
@ -260,8 +261,9 @@ pub async fn get() -> Document {
|
|||
option((attr::value("F"), "Feiertag")),
|
||||
option((attr::value("S"), "Sonstiges")),
|
||||
))),
|
||||
))
|
||||
.take(22)
|
||||
),
|
||||
22,
|
||||
)
|
||||
.collect::<Vec<_>>(),
|
||||
)),
|
||||
button((
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue