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