We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f5c1148 commit ac15810Copy full SHA for ac15810
plugins/dashboards/frontend/public/templates/helpers/widget/title.html
@@ -1,4 +1,17 @@
1
-<div class="bu-is-flex bu-is-flex-shrink-1" style="min-width: 0">
2
- <h4 class="bu-is-flex-shrink-1 has-ellipsis" v-if="title" data-test-id="widget-title">{{unescapeHtml(title)}}</h4>
3
- <clyd-title-labels v-if="labels && labels.length" :labels="labels"></clyd-title-labels>
4
-</div>
+<div
+ class="bu-is-flex bu-is-flex-shrink-1"
+ style="min-width: 0"
+ @mousedown.stop
5
+>
6
+ <h4
7
+ v-if="title"
8
+ class="bu-is-flex-shrink-1 has-ellipsis"
9
+ data-test-id="widget-title"
10
+ >
11
+ {{ unescapeHtml(title) }}
12
+ </h4>
13
+ <clyd-title-labels
14
+ v-if="labels && labels.length"
15
+ :labels="labels"
16
+ />
17
+</div>
0 commit comments