Commit 97c27668 by Torkel Ödegaard

fix(): fix failing build and removed panel icon from edit mode tabs

parent d3c022f8
...@@ -31,7 +31,6 @@ var panelTemplate = ` ...@@ -31,7 +31,6 @@ var panelTemplate = `
<div class="tabbed-view tabbed-view--panel-edit"> <div class="tabbed-view tabbed-view--panel-edit">
<div class="tabbed-view-header"> <div class="tabbed-view-header">
<h2 class="tabbed-view-title"> <h2 class="tabbed-view-title">
<i ng-class="ctrl.icon"></i>
{{ctrl.pluginName}} {{ctrl.pluginName}}
</h2> </h2>
......
...@@ -45,7 +45,6 @@ function (angular, _, kbn) { ...@@ -45,7 +45,6 @@ function (angular, _, kbn) {
}; };
this.setVariableFromUrl = function(variable, urlValue) { this.setVariableFromUrl = function(variable, urlValue) {
debugger;
var option = _.findWhere(variable.options, { text: urlValue }); var option = _.findWhere(variable.options, { text: urlValue });
option = option || { text: urlValue, value: urlValue }; option = option || { text: urlValue, value: urlValue };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment