Merge pull request #16360 from CartoDB/feature/sc-176005/change-maximum-layer-limit-message-in-builder

[sc176005] Fix messages about layer limit being reached
pull/16362/head
Shylpx 3 years ago committed by GitHub
commit 58e4fd77a7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -30,6 +30,7 @@ Development
- Use the organization user's data while editing a user from organization settings [#16280](https://github.com/CartoDB/cartodb/pull/16280)
- Fix schema name in layers created by free users [#16307](https://github.com/CartoDB/cartodb/pull/16307)
- Limit start parameter of Dropbox connector [#16264](https://github.com/CartoDB/cartodb/pull/16264)
- Fix messages about layer limit being reached [#16360](https://github.com/CartoDB/cartodb/pull/16360)
- Fix deck.gl dependency conflicts [#16339](https://github.com/CartoDB/cartodb/pull/16339)
- Migrate Redis DO subscription information in inter-cloud migrations [#16315](https://github.com/CartoDB/cartodb/pull/16315)
- OauthApps restricted by default [#16304](https://github.com/CartoDB/cartodb/pull/16304)

@ -265,7 +265,8 @@ module.exports = CoreView.extend({
infoboxOpts.action = { label: _t('editor.layers.max-layers-infowindow.org.upgrade') };
}
baseState.onAction = function () { window.open('mailto:' + this._userModel.upgradeContactEmail()); };
const contactEmail = this._userModel.upgradeContactEmail();
baseState.onAction = function () { window.open('mailto:' + contactEmail); };
} else {
baseState.onAction = function () { window.open(_t('editor.layers.max-layers-infowindow.pricing')); };
infoboxOpts.body = _t('editor.layers.max-layers-infowindow.regular.body', { maxLayers: this._getMaxCount() });

@ -2367,7 +2367,7 @@
"upgrade": "Upgrade your account"
},
"org": {
"body": "Increase your layer limit by contacting the account's administrator.",
"body": "Ask your account's administrator to contact CARTO Support in order to increase the layer limit for your organization.",
"upgrade": "Contact admin"
},
"org-admin": {

2
package-lock.json generated

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

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

Loading…
Cancel
Save