gitlab-org--gitlab-foss/changelogs
Stan Hu 7765e6ec10 Fix pagination and duplicate requests in environments page
This commit fixes two problems:

1. When a user clicked on another page, the app would fetch the new page
data but never update because the request and response parameters failed
to match the isEqual check. This was happening because the JSON response
omitted the `nested` attribute, so there was a comparison with a `null`
value.  We fix this by scrubbing undefined values before doing the
comparison.

2. There were duplicate requests made for the environments page because
the success handler of fetchPipelines() would cause the polling
component to make another XHR request.

Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/58191
2019-02-26 17:00:58 -08:00
..
unreleased Fix pagination and duplicate requests in environments page 2019-02-26 17:00:58 -08:00
archive.md
README.md add changelogs/README.md 2019-02-18 04:57:57 +00:00

Generating changelog entries

To generate and validate your changelog entries:

  1. Run bin/changelog to generate.
  2. Run scripts/lint-changelog-yaml to validate.

See development/changelog documentation for detailed usage.