(message, tag, id string)
| 3042 | } |
| 3043 | |
| 3044 | func (m model) showPrompt(message, tag, id string) model { |
| 3045 | m.prompt = appui.NewPromptModel(message, tag, id) |
| 3046 | m.prompt.SetWidth(m.width) |
| 3047 | m.overlay = overlayPrompt |
| 3048 | return m |
| 3049 | } |
| 3050 | |
| 3051 | func (m model) executeMenuCommand(containerID string, cmd docker.Command) (model, tea.Cmd) { |
| 3052 | switch cmd { |