Removing [dashboard] and [slice] titles to show name

This commit is contained in:
Michelle Thomas 2018-03-08 13:55:00 -08:00
parent 42ebcaad40
commit 402c7ddb26

View File

@ -1297,7 +1297,7 @@ class Superset(BaseSupersetView):
if datasource_type == 'table' \ if datasource_type == 'table' \
else datasource.datasource_name else datasource.datasource_name
if slc: if slc:
title = '[slice] ' + slc.slice_name title = slc.slice_name
else: else:
title = '[explore] ' + table_name title = '[explore] ' + table_name
return self.render_template( return self.render_template(
@ -2064,7 +2064,7 @@ class Superset(BaseSupersetView):
'superset/dashboard.html', 'superset/dashboard.html',
entry='dashboard', entry='dashboard',
standalone_mode=standalone_mode, standalone_mode=standalone_mode,
title='[dashboard] ' + dash.dashboard_title, title=dash.dashboard_title,
bootstrap_data=json.dumps(bootstrap_data), bootstrap_data=json.dumps(bootstrap_data),
) )