Skip to content

Commit

Permalink
GF-328: Revert full category descriptions in scheme pointer
Browse files Browse the repository at this point in the history
  • Loading branch information
levenkov committed Dec 15, 2021
1 parent 59fcf71 commit 0062dad
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/v1/components/SchemePointer/SchemePointer.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ class SchemePointer extends Component {
onMouseDown={this.onMouseDown}
className="track-point"
>
{category.substring(0, 2)}
{category}
</button>;
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/v2/components/SchemePointer/SchemePointer.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ class SchemePointer extends Component {
onMouseDown={this.onMouseDown}
className={css(styles.trackPoint)}
>
{category.substring(0, 2)}
{category}
</button>;
}
}
Expand Down

0 comments on commit 0062dad

Please sign in to comment.