mirror of
https://github.com/stashapp/stash.git
synced 2025-12-18 12:54:38 +03:00
Multiple scene URLs (#3852)
* Add URLs scene relationship * Update unit tests * Update scene edit and details pages * Update scrapers to use urls * Post-process scenes during query scrape * Update UI for URLs * Change urls label
This commit is contained in:
@@ -16,7 +16,7 @@ import { useToast } from "src/hooks/Toast";
|
||||
import NavUtils from "src/utils/navigation";
|
||||
import TextUtils from "src/utils/text";
|
||||
import { getStashboxBase } from "src/utils/stashbox";
|
||||
import { TextField, URLField } from "src/utils/field";
|
||||
import { TextField, URLField, URLsField } from "src/utils/field";
|
||||
|
||||
interface IFileInfoPanelProps {
|
||||
sceneID: string;
|
||||
@@ -316,12 +316,7 @@ export const SceneFileInfoPanel: React.FC<ISceneFileInfoPanelProps> = (
|
||||
)}
|
||||
{renderFunscript()}
|
||||
{renderInteractiveSpeed()}
|
||||
<URLField
|
||||
id="media_info.downloaded_from"
|
||||
url={props.scene.url}
|
||||
value={props.scene.url}
|
||||
truncate
|
||||
/>
|
||||
<URLsField id="urls" urls={props.scene.urls} truncate />
|
||||
{renderStashIDs()}
|
||||
<TextField
|
||||
id="media_info.play_count"
|
||||
|
||||
Reference in New Issue
Block a user