Skip to content

Commit f138dbf

Browse files
committed
2 parents edec061 + 35b8990 commit f138dbf

3 files changed

Lines changed: 3 additions & 2 deletions

File tree

client/src/components/input/GSelect.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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>

client/src/views/HomeView.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@ article {
7979
8080
h1 {
8181
text-align: center;
82+
font-size: 2rem;
8283
}
8384
8485
div {

server/src/main/kotlin/org/ivdnt/galahad/app/Log.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)