We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5724d85 + f1fe986 commit 2fef553Copy full SHA for 2fef553
plugins/dashboards/frontend/public/javascripts/countly.helpers.js
@@ -559,6 +559,14 @@
559
var SourceAppsComponent = countlyVue.views.create({
560
template: CV.T('/dashboards/templates/helpers/drawer/source-apps.html'),
561
props: {
562
+ subheading: {
563
+ type: String,
564
+ required: false
565
+ },
566
+ label: {
567
568
569
570
multipleLimit: {
571
type: Number,
572
default: 4
plugins/dashboards/frontend/public/templates/helpers/drawer/source-apps.html
@@ -1,7 +1,8 @@
1
<cly-form-field
2
name="apps"
3
rules="required"
4
- :label="i18nM('dashboards.source-apps')">
+ :subheading="subheading ? subheading: undefined"
5
+ :label="label ? label: i18nM('dashboards.source-apps')">
6
<cly-app-select
7
:key="rerender"
8
style="width: 100%;"
0 commit comments