mirror of
https://github.com/Garmelon/Arbeitszeitdokumentationsgenerator.git
synced 2026-04-12 16:55: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("(hh:mm)"),
|
div("(hh:mm)"),
|
||||||
div(()),
|
div(()),
|
||||||
iter::repeat((
|
iter::repeat_n(
|
||||||
|
(
|
||||||
div(input((
|
div(input((
|
||||||
attr::class("i-task"),
|
attr::class("i-task"),
|
||||||
attr::name("task"),
|
attr::name("task"),
|
||||||
|
|
@ -260,8 +261,9 @@ pub async fn get() -> Document {
|
||||||
option((attr::value("F"), "Feiertag")),
|
option((attr::value("F"), "Feiertag")),
|
||||||
option((attr::value("S"), "Sonstiges")),
|
option((attr::value("S"), "Sonstiges")),
|
||||||
))),
|
))),
|
||||||
))
|
),
|
||||||
.take(22)
|
22,
|
||||||
|
)
|
||||||
.collect::<Vec<_>>(),
|
.collect::<Vec<_>>(),
|
||||||
)),
|
)),
|
||||||
button((
|
button((
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue