Skip to content

Commit

Permalink
Merge pull request #755 from kartoza/timlinux/issue720
Browse files Browse the repository at this point in the history
The aggregation output name is not correct
  • Loading branch information
timlinux authored Jan 10, 2025
2 parents 2fb4a15 + abb880e commit 5c3cc09
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion geest/gui/panels/tree_panel.py
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ def working_directory_changed(self, new_directory):
f"Women's Economic Empowerment - {analysis_name}"
)
# analysis_item.setData(0, analysis_data.get("analysis_name", "Analysis"))
analysis_item.setData(0, "Score by Population and Job Distribution")
analysis_item.setData(0, "WEE Score")
settings = QSettings()
# This is the top level folder for work files
settings.setValue("last_working_directory", self.working_directory)
Expand Down
2 changes: 1 addition & 1 deletion geest/gui/views/treeview.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ def loadJsonData(self, json_data):
role = "analysis"
analysis_item = JsonTreeItem(
[
"Score by Population and Job Distribution",
"WEE Score",
status,
weighting,
analysis_attributes,
Expand Down

0 comments on commit 5c3cc09

Please sign in to comment.