mirror of
https://github.com/stashapp/stash.git
synced 2025-12-17 20:34:37 +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>
|
||||
<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>
|
||||
</>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user