Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
CollinBeczak committed Oct 22, 2024
1 parent 617f63d commit 1d98428
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion app/org/maproulette/framework/repository/TagRepository.scala
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,10 @@ object TagRepository {
get[String]("tags.tag_type") ~
get[Boolean]("tags.active") map {
case taskId ~ id ~ name ~ description ~ tagType ~ active => {
new TaskTag(taskId, new Tag(id, name.toLowerCase, description, tagType = tagType, active = active))
new TaskTag(
taskId,
new Tag(id, name.toLowerCase, description, tagType = tagType, active = active)
)
}
}
}
Expand Down

0 comments on commit 1d98428

Please sign in to comment.