While utilizing a static method to display all radio buttons, everything works smoothly with 100% width. However, when I switch to a dynamic approach using ng-repeat, a line break issue arises.
When not using ng-repeat:
When using ng-repeat:
Here's the code snippet:
<div class="btn-group input-group btn-group-justified" ng-repeat="number in numbers">
<label class="btn btn-primary" ng-model="radioModel" btn-radio="'{{number}}'">{{number}}</label>
</div>