Skip to content

Commit

Permalink
HPCC-32077 ECL Watch v9 correct label in Delete Queries dialog
Browse files Browse the repository at this point in the history
change the label in the Delete Queries dialog to show "Delete Selected
Queries" instead of "Delete Selected Workunits"

Signed-off-by: Jeremy Clements <[email protected]>
  • Loading branch information
jeclrsg committed Jun 19, 2024
1 parent fedef8f commit d79a8d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion esp/src/src-react/components/Queries.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ export const Queries: React.FunctionComponent<QueriesProps> = ({

const [DeleteConfirm, setShowDeleteConfirm] = useConfirm({
title: nlsHPCC.Delete,
message: nlsHPCC.DeleteSelectedWorkunits,
message: nlsHPCC.DeleteSelectedQueries,
items: selection.map(s => s.Id),
onSubmit: React.useCallback(() => {
WsWorkunits.WUQuerysetQueryAction(selection, "Delete").then(() => refreshTable.call(true));
Expand Down

0 comments on commit d79a8d2

Please sign in to comment.