Merge branch 'irish-monitor-service'

This commit is contained in:
Konstantinos Triantafyllou 2024-02-29 11:53:51 +02:00
commit a7a3970c79
1 changed files with 2 additions and 2 deletions

View File

@ -82,10 +82,10 @@ public class IndicatorController {
List<String> number_indicators = null;
if(section.getType().equals("chart")) {
chart_section = createSection(chart_section, "chart", (section.getTitle() != null ? section.getTitle() : "Charts")+" imported from file", date, stakeholder, topicId, categoryId, subcategoryId);
chart_section = createSection(chart_section, "chart", section.getTitle(), date, stakeholder, topicId, categoryId, subcategoryId);
chart_indicators = chart_section.getIndicators();
} else if(section.getType().equals("number")) {
number_section = createSection(number_section, "number", (section.getTitle() != null ? section.getTitle() : "Numbers")+ " imported from file", date, stakeholder, topicId, categoryId, subcategoryId);
number_section = createSection(number_section, "number", section.getTitle(), date, stakeholder, topicId, categoryId, subcategoryId);
number_indicators = number_section.getIndicators();
}