Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix(igr-templates): change linear and radial gauge template ids, #459
  • Loading branch information
ViktorSlavov committed Feb 22, 2019
1 parent 98ce1fd commit 98aec1a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions templates/react/igr-es6/linear-gauge/default/index.ts
Expand Up @@ -3,10 +3,10 @@ import { IgniteUIForReactTemplate } from "../../../../../lib/templates/IgniteUIF
class IgrLinearGaugeTemplate extends IgniteUIForReactTemplate {
constructor() {
super(__dirname);
this.components = ["Linear Graph"];
this.components = ["Linear Gauge"];
this.controlGroup = "Gauges";
this.listInComponentTemplates = true;
this.id = "linear-graph";
this.id = "linear-gauge";
this.projectType = "igr-es6";
this.name = "Linear Gauge";
this.description = `value compared against a scale and one or more ranges.`;
Expand Down
4 changes: 2 additions & 2 deletions templates/react/igr-es6/radial-gauge/default/index.ts
Expand Up @@ -3,10 +3,10 @@ import { IgniteUIForReactTemplate } from "../../../../../lib/templates/IgniteUIF
class IgrRadialGaugeTemplate extends IgniteUIForReactTemplate {
constructor() {
super(__dirname);
this.components = ["Radial Graph"];
this.components = ["Radial Gauge"];
this.controlGroup = "Gauges";
this.listInComponentTemplates = true;
this.id = "radial-graph";
this.id = "radial-gauge";
this.projectType = "igr-es6";
this.name = "Radial Gauge";
this.description = `provides a number of visual elements, like a needle, tick marks, ranges
Expand Down

0 comments on commit 98aec1a

Please sign in to comment.