mirror of
https://github.com/getredash/redash.git
synced 2026-03-22 10:00:17 -04:00
16 lines
355 B
JavaScript
16 lines
355 B
JavaScript
function VisualizationName(Visualization) {
|
|
return {
|
|
restrict: 'E',
|
|
scope: {
|
|
visualization: '=',
|
|
},
|
|
template: '{{name}}',
|
|
replace: false,
|
|
link(scope) {
|
|
if (Visualization.visualizations[scope.visualization.type].name !== scope.visualization.name) {
|
|
scope.name = scope.visualization.name;
|
|
}
|
|
},
|
|
};
|
|
}
|