Skip to content

Commit

Permalink
Merge pull request #65 from rudi123github/master
Browse files Browse the repository at this point in the history
Add anchor to scene path, and display stream anchor
  • Loading branch information
Leopere committed Jul 24, 2019
2 parents 2cfaeb7 + 2f3c577 commit a237362
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion ui/v2/src/components/scenes/SceneDetails/SceneFileInfoPanel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,16 @@ export const SceneFileInfoPanel: FunctionComponent<ISceneFileInfoPanelProps> = (
return (
<tr>
<td>Path</td>
<td>{props.scene.path}</td>
<td><a href={"file://"+props.scene.path}>{"file://"+props.scene.path}</a> </td>
</tr>
);
}

function renderStream() {
return (
<tr>
<td>Stream</td>
<td><a href={props.scene.paths.stream}>{props.scene.paths.stream}</a> </td>
</tr>
);
}
Expand Down Expand Up @@ -114,6 +123,7 @@ export const SceneFileInfoPanel: FunctionComponent<ISceneFileInfoPanelProps> = (
<tbody>
{renderChecksum()}
{renderPath()}
{renderStream()}
{renderFileSize()}
{renderDuration()}
{renderDimensions()}
Expand Down

0 comments on commit a237362

Please sign in to comment.