My back-end is sending me an array of string arrays (Java - CXF-RS).
The length of each array within the string arrays ranges from 1 to n. In order to display this data on my front-end, I am utilizing ng-repeat.
Everything is functioning correctly with one exception. When a string array contains only one element, it is interpreted as an Object. This leads to issues with ng-repeat failing in these scenarios.
Is there a way to resolve this issue?