Skip to content

Commit

Permalink
feat(ui): Include consumable name in consumable reset confirm dialog
Browse files Browse the repository at this point in the history
  • Loading branch information
Hypfer committed Aug 9, 2023
1 parent 76bba87 commit 7f7b218
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/robot/Consumables.tsx
Expand Up @@ -76,7 +76,7 @@ const ConsumableButtonListMenuItem: React.FunctionComponent<{
buttonColor={buttonColor}
confirmationDialog={{
title: "Reset consumable?",
body: "Do you really want to reset this consumable?"
body: `Do you really want to reset the ${getConsumableName(consumable.type, consumable.subType)} consumable?`
}}
action={() => {
resetConsumable(consumable);
Expand Down

0 comments on commit 7f7b218

Please sign in to comment.