mirror of
https://github.com/stashapp/stash.git
synced 2025-12-18 12:54:38 +03:00
Minor UI fix for StashId display in FileInfoPanel (#3050)
This commit is contained in:
@@ -158,7 +158,7 @@ export const SceneFileInfoPanel: React.FC<ISceneFileInfoPanelProps> = (
|
|||||||
<>
|
<>
|
||||||
<dt>StashIDs</dt>
|
<dt>StashIDs</dt>
|
||||||
<dd>
|
<dd>
|
||||||
<ul>
|
<dl>
|
||||||
{props.scene.stash_ids.map((stashID) => {
|
{props.scene.stash_ids.map((stashID) => {
|
||||||
const base = getStashboxBase(stashID.endpoint);
|
const base = getStashboxBase(stashID.endpoint);
|
||||||
const link = base ? (
|
const link = base ? (
|
||||||
@@ -173,12 +173,12 @@ export const SceneFileInfoPanel: React.FC<ISceneFileInfoPanelProps> = (
|
|||||||
stashID.stash_id
|
stashID.stash_id
|
||||||
);
|
);
|
||||||
return (
|
return (
|
||||||
<li key={stashID.stash_id} className="row no-gutters">
|
<dd key={stashID.stash_id} className="row no-gutters">
|
||||||
{link}
|
{link}
|
||||||
</li>
|
</dd>
|
||||||
);
|
);
|
||||||
})}
|
})}
|
||||||
</ul>
|
</dl>
|
||||||
</dd>
|
</dd>
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
|
|||||||
Reference in New Issue
Block a user