My understanding is that Okta would display the password complexity text as a bullet list instead of a comma-separated list.
Is the bullet list the default styling or it should be added manually?
Packages versions:
"@okta/okta-signin-widget": "5.5.3""@okta/okta-auth-js": "4.3.0""@okta/okta-vue": "3.0.0"(Sign-In Widget's CSS is being imported)
For future reference, this issue is solved by adding showPasswordRequirementsAsHtmlList: true to the features property in the config.
new OktaSignIn({
...config,
features: {
showPasswordRequirementsAsHtmlList: true,
},
});