1
0
mirror of https://github.com/taigrr/wtf synced 2025-01-18 04:03:14 -08:00

Flip todoist over to multiview widget

This can also probably be made scrollable in the future as well
This commit is contained in:
Sean Smith
2019-05-12 23:15:48 -04:00
parent cbb147f41e
commit 6a41935e61
4 changed files with 12 additions and 28 deletions

View File

@@ -149,7 +149,7 @@ func ToStrs(slice []interface{}) []string {
results := []string{}
for _, val := range slice {
results = append(results, val.(string))
results = append(results, fmt.Sprintf("%v", val))
}
return results