File tree Expand file tree Collapse file tree 3 files changed +11
-2
lines changed
src/opengeodeweb_back/routes/models Expand file tree Collapse file tree 3 files changed +11
-2
lines changed Original file line number Diff line number Diff line change 11# CHANGELOG
22
33
4+ ## v5.7.3-rc.1 (2025-05-20)
5+
6+ ### Bug Fixes
7+
8+ - ** blueprint_models** : Set current_index
9+ ([ ` 1e831c7 ` ] ( https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/1e831c792d99bd812234e7a03cab25902dc6c9fb ) )
10+
11+
412## v5.7.2 (2025-05-19)
513
614
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
55
66[project ]
77name = " OpenGeodeWeb-Back"
8- version = " 5.7.2 "
8+ version = " 5.7.3-rc.1 "
99dynamic = [" dependencies" ]
1010authors = [
1111 {
name =
" Geode-solutions" ,
email =
" [email protected] " },
Original file line number Diff line number Diff line change @@ -27,11 +27,12 @@ def uuid_to_flat_index():
2727 tree = ET .parse (vtm_file_path )
2828 root = tree .find ("vtkMultiBlockDataSet" )
2929 uuid_to_flat_index = {}
30- current_index = 1
30+ current_index = 0
3131
3232 for elem in root .iter ():
3333 if "uuid" in elem .attrib and elem .tag == "DataSet" :
3434 uuid_to_flat_index [elem .attrib ["uuid" ]] = current_index
35+
3536 current_index += 1
3637
3738 return flask .make_response (
You can’t perform that action at this time.
0 commit comments