mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-08-16 20:49:00 -04:00
Add space around folder name separator when flattening folder path
This commit is contained in:
committed by
Pea Tyczynska
parent
1fb7a2515f
commit
80bfd8e347
@@ -396,7 +396,7 @@ class Service():
|
||||
"users_with_permission": folder["users_with_permission"]
|
||||
}
|
||||
while folder_attrs["parent_id"] is not None:
|
||||
folder_attrs["name"] = parent["name"] + "/" + folder_attrs["name"]
|
||||
folder_attrs["name"] = parent["name"] + " / " + folder_attrs["name"]
|
||||
if parent["parent_id"] is None:
|
||||
folder_attrs["parent_id"] = None
|
||||
else:
|
||||
|
||||
Reference in New Issue
Block a user