Skip to content

Commit

Permalink
Merge pull request #3032 from SCADA-LTS/fix/#3031_report_created_from…
Browse files Browse the repository at this point in the history
…_watch_list_blabla_is_named_Copy_of_blabla

#3031 report created from watch list blabla is named Copy of blabla
  • Loading branch information
Limraj authored Oct 18, 2024
2 parents 92d5ab0 + c7a8c0c commit 4e0264f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/com/serotonin/mango/web/dwr/ReportsDwr.java
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ public ReportVO createReportFromWatchlist(int watchListId) {

watchListService.populateWatchlistData(watchList);
ReportVO report = new ReportVO();
report.setName(LocalizableMessage.getMessage(getResourceBundle(), "common.copyPrefix", watchList.getName()));
report.setName(watchList.getName());
for (DataPointVO dp : watchList.getPointList()) {
ReportPointVO rp = new ReportPointVO();
rp.setPointId(dp.getId());
Expand Down

0 comments on commit 4e0264f

Please sign in to comment.