Don't show full segments on preview bar

This commit is contained in:
Ajay
2022-01-05 02:39:13 -05:00
parent 2883a50f27
commit 388b9179ac
2 changed files with 5 additions and 1 deletions

View File

@@ -6,6 +6,7 @@ https://github.com/videosegments/videosegments/commits/f1e111bdfe231947800c6efdd
'use strict';
import Config from "../config";
import { ActionType } from "../types";
import Utils from "../utils";
const utils = new Utils();
@@ -15,6 +16,7 @@ export interface PreviewBarSegment {
segment: [number, number];
category: string;
unsubmitted: boolean;
actionType: ActionType;
showLarger: boolean;
}