This repository was archived by the owner on Apr 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 27.4k
limitTo: Ignore limit
when undefined
#10484
Milestone
Comments
It kind of makes sense what you are saying and I think that the current behavior is bogus for non-string inputs. Having said this it would be a breaking change (see those tests: angular.js/test/ng/filter/limitToSpec.js Lines 45 to 51 in 85758ce
|
Oh, actually it is fine for arrays. But yeh, we can revisit behavior for undefined in 1.4.x |
I'm taking look at this. Should it return input unchanged only for undefined and 'undefined'; or for all bogus values? |
marcin-wosinek
pushed a commit
to marcin-wosinek/angular.js
that referenced
this issue
Dec 17, 2014
BREAKING CHANGE: limitTo changed behavoir when limit value is undefined. Instead of returning empty object/array it returns non-changed input. Closes angular#10484
marcin-wosinek
added a commit
to marcin-wosinek/angular.js
that referenced
this issue
Dec 17, 2014
BREAKING CHANGE: limitTo changed behavoir when limit value is undefined. Instead of returning empty object/array it returns non-changed input. Closes angular#10484
marcin-wosinek
added a commit
to marcin-wosinek/angular.js
that referenced
this issue
Dec 18, 2014
BREAKING CHANGE: limitTo changed behavoir when limit value is invalid. Instead of returning empty object/array it returns unchanged input. Closes angular#10484
marcin-wosinek
added a commit
to marcin-wosinek/angular.js
that referenced
this issue
Dec 18, 2014
BREAKING CHANGE: limitTo changed behavoir when limit value is invalid. Instead of returning empty object/array it returns unchanged input. Closes angular#10484
marcin-wosinek
added a commit
to marcin-wosinek/angular.js
that referenced
this issue
Dec 18, 2014
BREAKING CHANGE: limitTo changed behavoir when limit value is invalid. Instead of returning empty object/array it returns unchanged input. Closes angular#10484
marcin-wosinek
added a commit
to marcin-wosinek/angular.js
that referenced
this issue
Dec 18, 2014
BREAKING CHANGE: limitTo changed behavoir when limit value is invalid. Instead of returning empty object/array it returns unchanged input. Closes angular#10484
marcin-wosinek
added a commit
to marcin-wosinek/angular.js
that referenced
this issue
Dec 18, 2014
BREAKING CHANGE: limitTo changed behavior when limit value is invalid. Instead of returning empty object/array it returns unchanged input. Closes angular#10484
marcin-wosinek
added a commit
to marcin-wosinek/angular.js
that referenced
this issue
Dec 18, 2014
BREAKING CHANGE: limitTo changed behavior when limit value is invalid. Instead of returning empty object/array it returns unchanged input. Closes angular#10484
marcin-wosinek
added a commit
to marcin-wosinek/angular.js
that referenced
this issue
Dec 19, 2014
BREAKING CHANGE: limitTo changed behavior when limit value is invalid. Instead of returning empty object/array it returns unchanged input. Closes angular#10484
@petebacondarwin I believe this can be closed too due to #10510. |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Currently, passing an
undefined
limit to thelimitTo
filter will return an empty array/string.I would expect filtering to be skipped and the original input returned, when the
limit
argument is undefined.E.g.:
Before interacting with the input (i.e. explicitly specifying a
limit
), I would expect all items to be listed.What happens instead, is that no item is listed, until a valid integer number is specified.
Although there are ways around this limitation (i.e. detecting
undefined
and setlimit
toInfinity
), they are unnecessrily verbose (imo).The text was updated successfully, but these errors were encountered: