You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
.state({
name: 'fooState',
url: '/{param1:string}/{param2}',
params: {
param2: {
value: 100, // default val
type: 'int' // Setting a url param type here doesn't work
},
param3: {
type: 'int' // url-less parameter type by name doesn't work
}
}
})