Given a state with param of type array ``` $stateProvider.state('stateA', { params: { paramA: { value: [], array: true, type: 'int', }, }, ``` The active class is not added on the html element when we navigate to the state ``` <a ui-sref-active="active" ui-sref="stateA({paramA: [1,2]})">Link</a> ```