add container name to log view title

This commit is contained in:
Bradley Cicenas 2018-05-10 09:53:59 +00:00
parent 842809bef5
commit 17855e3d8e
1 changed files with 1 additions and 1 deletions

View File

@ -179,7 +179,7 @@ func LogMenu() MenuFn {
logs, quit := logReader(c)
m := widgets.NewTextView(logs)
m.BorderLabel = "Logs"
m.BorderLabel = fmt.Sprintf("Logs [%s]", c.GetMeta("name"))
ui.Render(m)
ui.Handle("/sys/wnd/resize", func(e ui.Event) {