Skip to content

Commit

Permalink
fix error message format when long query timeout (apache#3823)
Browse files Browse the repository at this point in the history
  • Loading branch information
Grace Guo authored Nov 10, 2017
1 parent 42a22f3 commit 68f5f9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion superset/assets/javascripts/chart/chartReducer.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ export default function chartReducer(charts = {}, action) {
return { ...state,
chartStatus: 'failed',
chartAlert: (
"<strong>{t('Query timeout')}</strong> - " +
`<strong>${t('Query timeout')}</strong> - ` +
t(`visualization queries are set to timeout at ${action.timeout} seconds. `) +
t('Perhaps your data has grown, your database is under unusual load, ' +
'or you are simply querying a data source that is too large ' +
Expand Down

0 comments on commit 68f5f9f

Please sign in to comment.