Skip to content

Commit a2baec8

Browse files
committed
fix(panel): fixed panel help tooltip issue, grafana#4079
1 parent ecf44d4 commit a2baec8

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

public/app/features/panel/panel_directive.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ module.directive('grafanaPanel', function($rootScope) {
144144

145145
function updatePanelCornerInfo() {
146146
var cornerMode = ctrl.getInfoMode();
147-
cornerInfoElem[0].className = 'panel-info-corner + panel-info-corner--' + cornerMode;
147+
cornerInfoElem[0].className = 'panel-info-corner panel-info-corner--' + cornerMode;
148148

149149
if (cornerMode) {
150150
if (infoDrop) {

tasks/default_task.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ module.exports = function(grunt) {
99
'concat:cssFonts',
1010
'styleguide',
1111
'sasslint',
12-
'postcss'
12+
'postcss',
1313
]
1414
);
1515

tasks/options/cssmin.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
module.exports = function(config) {
22
return {
3+
options: {
4+
restructuring: false,
5+
},
36
build: {
47
expand: true,
58
cwd: '<%= genDir %>',

0 commit comments

Comments
 (0)