We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 31430d2 commit e6abf8dCopy full SHA for e6abf8d
src/components/widgets/VideoExplorer/Frame/index.js
@@ -30,6 +30,7 @@ class Frame extends React.Component {
30
switch(subtitle.format){
31
case 'leftRightPercentArray':
32
value = value
33
+ .sort((a, b) => a - b)
34
.map(v => {
35
return `${v > 0 ? 'right' : 'left'}: ${Math.abs(parseInt(v * 100))}/100`;
36
})
0 commit comments