Skip to content

Commit

Permalink
Fix incorrect number of lines copied amount shown in toast
Browse files Browse the repository at this point in the history
  • Loading branch information
walidkayhan committed Jul 10, 2024
1 parent 269a118 commit b78d5df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/widgets/Console/Terminal.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ class TerminalWrapper extends PureComponent {
}

Toaster.pop({
msg: `Copied Last ${selection.length} Lines from the Terminal to Clipboard`,
msg: `Copied Last ${LINES_TO_COPY} Lines from the Terminal to Clipboard`,
type: TOASTER_INFO
});
}
Expand Down

0 comments on commit b78d5df

Please sign in to comment.