Compare commits

..

1 Commits

Author SHA1 Message Date
httpjamesm adb796443c fix: add stackoverflow flex classes 2024-03-09 11:19:23 -05:00
2 changed files with 13 additions and 1 deletions
+12
View File
@@ -50,3 +50,15 @@ html {
details {
cursor: pointer;
}
.d-flex {
display: flex;
}
.fd-column {
flex-direction: column;
}
.fw-nowrap {
flex-wrap: nowrap;
}
+1 -1
View File
@@ -109,7 +109,7 @@ func ViewQuestion(c *gin.Context) {
"answers": answers,
"imagePolicy": imagePolicy,
"theme": c.MustGet("theme").(string),
"currentUrl": fmt.Sprintf("%s%s", os.Getenv("APP_URL"), c.Request.URL.Path),
"currentUrl": fmt.Sprintf("%s/questions/%s/%s", os.Getenv("APP_URL"), questionId, params.QuestionTitle),
"sortValue": params.SoSortValue,
"domain": domain,
})