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

Display container name in its removal confirmation message #4601

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/ContainerListItem.react.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ var ContainerListItem = React.createClass({
e.preventDefault();
e.stopPropagation();
dialog.showMessageBox({
message: 'Are you sure you want to stop & remove this container?',
message: `Are you sure you want to stop & remove the container '${this.props.container.Name}'?`,
buttons: ['Remove', 'Cancel']
}, function (index) {
if (index === 0) {
Expand Down