You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by ar...@apache.org on 2024/02/06 11:34:52 UTC

(superset) branch master updated: chore(plugins): Description, Category and Tags for BigNumber with Period Time Comparison plugin (#27021)

This is an automated email from the ASF dual-hosted git repository.

arivero pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/superset.git


The following commit(s) were added to refs/heads/master by this push:
     new 53daa1b13f chore(plugins): Description, Category and Tags for BigNumber with Period Time Comparison plugin (#27021)
53daa1b13f is described below

commit 53daa1b13f2467d58df07fe2ce944dfff1129ff7
Author: Antonio Rivero <38...@users.noreply.github.com>
AuthorDate: Tue Feb 6 12:34:47 2024 +0100

    chore(plugins): Description, Category and Tags for BigNumber with Period Time Comparison plugin (#27021)
    
    Co-authored-by: yousoph <so...@gmail.com>
---
 .../plugin-chart-period-over-period-kpi/src/plugin/index.ts   | 11 ++++++++++-
 1 file changed, 10 insertions(+), 1 deletion(-)

diff --git a/superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts b/superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts
index 2ea1b94bdb..39ce12aa3c 100644
--- a/superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts
+++ b/superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/plugin/index.ts
@@ -35,8 +35,17 @@ export default class PopKPIPlugin extends ChartPlugin {
    */
   constructor() {
     const metadata = new ChartMetadata({
-      description: 'KPI viz for comparing multiple period',
+      category: t('KPI'),
+      description:
+        'Showcases a metric along with a comparison of value, change, and percent change for a selected time period.',
       name: t('Big Number with Time Period Comparison'),
+      tags: [
+        t('Comparison'),
+        t('Business'),
+        t('Percentages'),
+        t('Report'),
+        t('Description'),
+      ],
       thumbnail,
     });