We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eb1ed2c commit ba1fcf5Copy full SHA for ba1fcf5
plugins/server-stats/frontend/public/javascripts/countly.views.js
@@ -319,6 +319,11 @@ var DataPointsView = countlyVue.views.create({
319
}
320
return table;
321
322
+ },
323
+ computed: {
324
+ tooltip: function() {
325
+ return !this.app_id ? {description: this.description, placement: 'top-center'} : null;
326
+ }
327
328
});
329
plugins/server-stats/frontend/public/templates/data-points.html
@@ -1,7 +1,7 @@
1
<div v-bind:class="[componentId]">
2
<cly-header
3
:title="title"
4
- :tooltip="!app_id && {description, placement: 'top-center'}"
+ :tooltip="tooltip"
5
>
6
<template v-slot:header-top >
7
<cly-back-link v-if="subPage" link="#/manage/data-points" :title ="i18n('common.back')"></cly-back-link>
0 commit comments