Skip to content

Commit

Permalink
period labels
Browse files Browse the repository at this point in the history
  • Loading branch information
benzerbett committed May 28, 2021
1 parent cc0c670 commit 1fd878f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/components/Toolbar/Toolbar.js
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,9 @@ const Toolbar = props => {
let pe_ar = pe.split(';');
pe = `${humanizePe(pe_ar[0])} - ${humanizePe(pe_ar[pe_ar.length - 1])}`;
} else {
// pe = humanizePe(pe);
if( !isNaN(parseInt(pe)) ){
pe = humanizePe(pe);
}
}

///-----
Expand Down

0 comments on commit 1fd878f

Please sign in to comment.