mirror of
https://github.com/grafana/grafana.git
synced 2024-11-22 08:56:43 -06:00
fix(panel): fixed panel help tooltip issue, #4079
This commit is contained in:
parent
ecf44d4d9c
commit
a2baec8592
@ -144,7 +144,7 @@ module.directive('grafanaPanel', function($rootScope) {
|
||||
|
||||
function updatePanelCornerInfo() {
|
||||
var cornerMode = ctrl.getInfoMode();
|
||||
cornerInfoElem[0].className = 'panel-info-corner + panel-info-corner--' + cornerMode;
|
||||
cornerInfoElem[0].className = 'panel-info-corner panel-info-corner--' + cornerMode;
|
||||
|
||||
if (cornerMode) {
|
||||
if (infoDrop) {
|
||||
|
@ -9,7 +9,7 @@ module.exports = function(grunt) {
|
||||
'concat:cssFonts',
|
||||
'styleguide',
|
||||
'sasslint',
|
||||
'postcss'
|
||||
'postcss',
|
||||
]
|
||||
);
|
||||
|
||||
|
@ -1,5 +1,8 @@
|
||||
module.exports = function(config) {
|
||||
return {
|
||||
options: {
|
||||
restructuring: false,
|
||||
},
|
||||
build: {
|
||||
expand: true,
|
||||
cwd: '<%= genDir %>',
|
||||
|
Loading…
Reference in New Issue
Block a user