fix: add label to datalist values

This commit is contained in:
Gustavo "Guz" L. de Mello
2024-07-10 23:32:17 -03:00
parent 4344ec8285
commit 153d862573

View File

@@ -92,6 +92,6 @@ func getInstanceList(limit int) []Instance {
templ InstancesOptions(limit int) {
for _, v := range getInstanceList(limit) {
<option value={ v.Name }></option>
<option value={ "https://" + v.Name } label={ v.Name }></option>
}
}