Skip to content

Commit

Permalink
fix(selected-layers): add shortName to selected layer (#473)
Browse files Browse the repository at this point in the history
  • Loading branch information
KatvonRivia committed Aug 13, 2020
1 parent ea297f4 commit 4e13b8e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const SelectedLayerListItem: FunctionComponent<Props> = ({layer, onRemove}) => (
<div className={styles.selectedLayerListItem}>
<div className={styles.layerTitle}>
<div className={styles.layerIcon}></div>
<span className={styles.layerTitle}>{layer.name}</span>
<span className={styles.layerTitle}>{layer.shortName}</span>
</div>
{onRemove && (
<button
Expand Down

0 comments on commit 4e13b8e

Please sign in to comment.