File tree Expand file tree Collapse file tree
server/src/main/kotlin/org/ivdnt/galahad/app Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11<template >
22 <select v-model =" model" class =" select" >
3- <option class =" option" selected :value =" undefined" >-- select an option --</option >
3+ <option class =" option" hidden selected :value =" undefined" >-- select an option --</option >
44 <option v-for =" option in options" :key =" option.value" :value =" option.value" class =" option" >
55 {{ option.text }}
66 </option >
Original file line number Diff line number Diff line change @@ -79,6 +79,7 @@ article {
7979
8080 h1 {
8181 text-align : center ;
82+ font-size : 2rem ;
8283 }
8384
8485 div {
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ class Log : Filter, Logging {
2424 if (url != " /user" ) {
2525 val finish = Instant .now()
2626 val time: Long = Duration .between(start, finish).toMillis()
27- logger.info(" in $time ms: ${req.method} $url " )
27+ logger.info(" in $time ms: ${req.method} $url ? ${req.queryString ? : " " } " )
2828 }
2929 }
3030 }
You can’t perform that action at this time.
0 commit comments