You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In both core and arches app templates, we have a guard around the call to generate_frontend_configuration() that tries to avoid running this multiple times for every arches application:
However, it checks APP_NAME, which isn't very reliable, since it is configurable through the UI, and comes with a default of "Arches" that might not even match the self.name in the AppConfig class.
In v8 we should find a better guard or remove the guard entirely.
The text was updated successfully, but these errors were encountered:
In both core and arches app templates, we have a guard around the call to
generate_frontend_configuration()
that tries to avoid running this multiple times for every arches application:arches/arches/install/arches-templates/project_name/apps.py-tpl
Lines 11 to 13 in 02f2d8c
However, it checks
APP_NAME
, which isn't very reliable, since it is configurable through the UI, and comes with a default of "Arches" that might not even match theself.name
in the AppConfig class.In v8 we should find a better guard or remove the guard entirely.
The text was updated successfully, but these errors were encountered: