i would like to add some small circles next to the ion-select-option lines with the attribute "< div >". I tried several options but nothing of them worked as expected. Hope someone can help.
<div class="eventSelect">
<ion-select
interface="popover"
placeholder="Select Event"
id="popover-bottom"
(ionChange)="loadSelectedEvent($event)"
>
<ion-select-option
class="my-select-option"
*ngFor="let item of user_events"
value="{{item.id}}"
>
<div
*ngIf="item.isActive === true"
slot="start"
class="circleBase circle1"
>
true
</div>
<div
*ngIf="item.isActive === false"
slot="start"
class="circleBase circle1"
>
false
</div>
<ion-label>{{item.beginDate}} -</ion-label>
<ion-label> {{item.eventName}} </ion-label>
</ion-select-option>
</ion-select>
</div>
I would like to have a red or green circle instead of the boolean values