Skip to content
This repository has been archived by the owner on Dec 23, 2021. It is now read-only.

Commit

Permalink
Fix panic when exporting container
Browse files Browse the repository at this point in the history
  • Loading branch information
skanehira committed Sep 5, 2019
1 parent 81954fe commit 9f271e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gui/keybindings.go
Original file line number Diff line number Diff line change
Expand Up @@ -415,7 +415,7 @@ func (g *Gui) exportContainerForm() {
AddInputField("Container", container.Name, inputWidth, nil, nil).
AddButton("Create", func() {
path := form.GetFormItemByLabel("Path").(*tview.InputField).GetText()
container := form.GetFormItemByLabel("container").(*tview.InputField).GetText()
container := form.GetFormItemByLabel("Container").(*tview.InputField).GetText()

g.exportContainer(path, container)
}).
Expand Down

0 comments on commit 9f271e2

Please sign in to comment.