Skip to content

Commit

Permalink
fix: SplitSourceRenderer drawing preview boxes in reverse order
Browse files Browse the repository at this point in the history
  • Loading branch information
Julusian committed Oct 22, 2019
1 parent 4496931 commit d841ca5
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -135,7 +135,7 @@ export class SplitsSourceRenderer extends CustomLayerItemRenderer<IProps, IState
return (
<div className='video-preview'>
{
this.state.subItems.map((item, index, array) => {
this.state.subItems.reverse().map((item, index, array) => {
return (
<div className={ClassNames(
'video-preview',
Expand Down

0 comments on commit d841ca5

Please sign in to comment.