Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

springboot-customized-webapps localization with version 7.15.0 not working. #247

Open
semihunaldi opened this issue May 12, 2021 · 1 comment

Comments

@semihunaldi
Copy link

With updating springboot-customized-webapps' camunda version to 7.15.0, localization is not working with the same configuration.

Has anybody figured it out recently?

@ureiss-com
Copy link

ureiss-com commented Nov 30, 2021

Use 'export default' instead of 'window.camTasklistConf =' in config.js:

Not working with camunda 7.16.0:

window.camTasklistConf = {
    "locales": {
        "availableLocales": ["de", "en"],
        "fallbackLocale": "en"
    },
	
    // ... more options
}

Working with camunda 7.16.0:

export default {
    "locales": {
        "availableLocales": ["de", "en"],
        "fallbackLocale": "en"
    },
	
    // ... more options
}

See also: https://github.com/camunda/camunda-docs-manual/blob/master/content/webapps/cockpit/extend/configuration.md

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants