This is an automated email from the ASF dual-hosted git repository. villebro pushed a commit to branch 0.34 in repository https://gitbox.apache.org/repos/asf/incubator-superset.git
commit 7ca58f0212e07e6b20f69092c2ca02fc3300ab28 Author: Evan Rusackas <[email protected]> AuthorDate: Tue Aug 27 10:37:40 2019 -0700 adding spaces missing from string concatenations (#8126) --- superset/assets/src/explore/controlPanels/Separator.js | 2 +- superset/assets/src/explore/controls.jsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/superset/assets/src/explore/controlPanels/Separator.js b/superset/assets/src/explore/controlPanels/Separator.js index 6611aef..df80834 100644 --- a/superset/assets/src/explore/controlPanels/Separator.js +++ b/superset/assets/src/explore/controlPanels/Separator.js @@ -31,7 +31,7 @@ export default { controlOverrides: { code: { default: '####Section Title\n' + - 'A paragraph describing the section' + + 'A paragraph describing the section ' + 'of the dashboard, right before the separator line ' + '\n\n' + '---------------', diff --git a/superset/assets/src/explore/controls.jsx b/superset/assets/src/explore/controls.jsx index ae673de..a3049d3 100644 --- a/superset/assets/src/explore/controls.jsx +++ b/superset/assets/src/explore/controls.jsx @@ -1480,7 +1480,7 @@ export const controls = { renderTrigger: true, default: true, description: ( - 'Whether to apply filters as they change, or wait for' + + 'Whether to apply filters as they change, or wait for ' + 'users to hit an [Apply] button' ), },
