Browse Source

chore: show non-English characters in exported DSL files (#7042)

tags/0.7.0
Sangmin Ahn 1 year ago
parent
commit
7f81a86e9e
No account linked to committer's email address
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      api/services/app_dsl_service.py

+ 1
- 1
api/services/app_dsl_service.py View File

@@ -176,7 +176,7 @@ class AppDslService:
else:
cls._append_model_config_export_data(export_data, app_model)

return yaml.dump(export_data)
return yaml.dump(export_data, allow_unicode=True)

@classmethod
def _check_or_fix_dsl(cls, import_data: dict) -> dict:

Loading…
Cancel
Save