We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5e58095 commit 871ce20Copy full SHA for 871ce20
src/components/widgets/VideoExplorer/Frame/index.js
@@ -28,9 +28,11 @@ class Frame extends React.Component {
28
const separator = subtitle.separator || " - ";
29
30
switch(subtitle.format){
31
- case 'percentArray':
+ case 'leftRightPercentArray':
32
value = value
33
- .map(v => `${Math.abs(parseInt(v * 100))}%`)
+ .map(v => {
34
+ return `${v > 0 ? 'right' : 'left'}: ${Math.abs(parseInt(v * 100))}/100`;
35
+ })
36
.join(separator)
37
break;
38
default:
0 commit comments