I am facing an issue with placing a bullet point between list items generated from ng-repeat in Angular.
Despite my efforts, the bullet point keeps appearing after the items instead of between them.
Here is how it currently looks:
Venue1• $20
However, I need it to look like this:
Venue1 [bullet] $20
This is the HTML code I am using:
<h4 class="venue">{{show.properties.venue}}• {{show.properties.price}}</h4>
I'm puzzled as to why the bullet point gets pushed to the end and not in between the items?