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

Commit 9f271e2

Browse files
committed
Fix panic when exporting container
1 parent 81954fe commit 9f271e2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gui/keybindings.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -415,7 +415,7 @@ func (g *Gui) exportContainerForm() {
415415
AddInputField("Container", container.Name, inputWidth, nil, nil).
416416
AddButton("Create", func() {
417417
path := form.GetFormItemByLabel("Path").(*tview.InputField).GetText()
418-
container := form.GetFormItemByLabel("container").(*tview.InputField).GetText()
418+
container := form.GetFormItemByLabel("Container").(*tview.InputField).GetText()
419419

420420
g.exportContainer(path, container)
421421
}).

0 commit comments

Comments
 (0)