From c7a8c0c8baa5e3a0f037862d02150e2a0b198fcd Mon Sep 17 00:00:00 2001 From: Patrykb0802 Date: Fri, 18 Oct 2024 12:50:57 +0200 Subject: [PATCH] #3031 report created from watch list blabla is named Copy of blabla --- src/com/serotonin/mango/web/dwr/ReportsDwr.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/serotonin/mango/web/dwr/ReportsDwr.java b/src/com/serotonin/mango/web/dwr/ReportsDwr.java index 73905f6098..0381ad9725 100644 --- a/src/com/serotonin/mango/web/dwr/ReportsDwr.java +++ b/src/com/serotonin/mango/web/dwr/ReportsDwr.java @@ -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());