diff --git a/ui/v2/src/components/scenes/SceneDetails/SceneFileInfoPanel.tsx b/ui/v2/src/components/scenes/SceneDetails/SceneFileInfoPanel.tsx index 862e6b85a..48237c162 100644 --- a/ui/v2/src/components/scenes/SceneDetails/SceneFileInfoPanel.tsx +++ b/ui/v2/src/components/scenes/SceneDetails/SceneFileInfoPanel.tsx @@ -23,7 +23,16 @@ export const SceneFileInfoPanel: FunctionComponent = ( return ( Path - {props.scene.path} + {"file://"+props.scene.path} + + ); + } + + function renderStream() { + return ( + + Stream + {props.scene.paths.stream} ); } @@ -114,6 +123,7 @@ export const SceneFileInfoPanel: FunctionComponent = ( {renderChecksum()} {renderPath()} + {renderStream()} {renderFileSize()} {renderDuration()} {renderDimensions()}