List component bullets appear as • instead of bullets utf-8 \2022.
Problem was showing up in Android and iOS after using Cordova to create the app.
Traced the issue and not a Cordova problem but a CSS issue.
Quick fix would be to change @bulletCharacter: '•'; to @bulletCharacter: '\2022'; in the default theme
A similar issue was reported by ruimcf in in 2017 in semantic-ui-react (a different project I know) but layershifter dismissed this as not an issue in semantic-ui-react.
List component bullets appear as • instead of bullets utf-8 \2022. Problem was showing up in Android and iOS after using Cordova to create the app. Traced the issue and not a Cordova problem but a CSS issue.
Quick fix would be to change @bulletCharacter: '•'; to @bulletCharacter: '\2022'; in the default theme
https://github.com/Semantic-Org/Semantic-UI/blob/master/src/themes/default/elements/list.variables#L163
A similar issue was reported by ruimcf in in 2017 in semantic-ui-react (a different project I know) but layershifter dismissed this as not an issue in semantic-ui-react.
Hopefully this can be fixed in the future :)