Merge pull request #16378 from CartoDB/bug/sc-79798/westermann-gruppe-search-dataset-when-generating

[sc79798] Fix form to search dataset when generating a new API key
pull/16383/head
Shylpx 3 years ago committed by GitHub
commit c83621bfda
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -51,6 +51,7 @@ Development
- Fix verification process for active users [#16337](https://github.com/CartoDB/cartodb/pull/16337)
- Avoid updating analysis nodes more than once when moving layers in Builder [#16279](https://github.com/CartoDB/cartodb/pull/16279)
- Fix subscription/sample filter for datasets [#16254](https://github.com/CartoDB/cartodb/pull/16254)
- Fix form to search dataset when generating a new API key [#16378](https://github.com/CartoDB/cartodb/pull/16378)
- Use fully qualified table name while creating a new map from a shared dataset [#16241](https://github.com/CartoDB/cartodb/pull/16241)
- Render tileset viewer features in front of basemap [#16333](https://github.com/CartoDB/cartodb/pull/16333)
- Rake task to migrate legacy synchronizations [#16353](https://github.com/CartoDB/cartodb/pull/16353)

@ -121,5 +121,5 @@ module.exports = CoreView.extend({
_onSearchChanged: _.debounce(function (event) {
this._userTablesModel.setQuery(event.target.value);
}, 500, this)
}, 500)
});

@ -221,7 +221,9 @@ describe('dashboard/components/table-grants/table-grants-view', function () {
view._onSearchChanged(event);
setTimeout(function () {
expect(userTablesModel.setQuery).toHaveBeenCalledWith(event.target.value);
}, 600);
});
});
});

2
package-lock.json generated

@ -1,6 +1,6 @@
{
"name": "cartodb-ui",
"version": "1.0.0-assets.278",
"version": "1.0.0-assets.279",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

@ -1,6 +1,6 @@
{
"name": "cartodb-ui",
"version": "1.0.0-assets.278",
"version": "1.0.0-assets.279",
"description": "CARTO UI frontend",
"repository": {
"type": "git",

Loading…
Cancel
Save