mirror of
https://github.com/stashapp/stash.git
synced 2025-12-18 04:44:37 +03:00
fix separator being used around null fields (#3996)
* fix separator being used around null fields * updated apple.ts code to use UAParser
This commit is contained in:
@@ -89,9 +89,11 @@ export const CompressedStudioDetailsPanel: React.FC<IStudioDetailsPanel> = ({
|
||||
<a className="studio-name" onClick={() => scrollToTop()}>
|
||||
{studio.name}
|
||||
</a>
|
||||
<span className="detail-divider">/</span>
|
||||
{studio?.parent_studio?.name ? (
|
||||
<span className="studio-parent">{studio?.parent_studio?.name}</span>
|
||||
<>
|
||||
<span className="detail-divider">/</span>
|
||||
<span className="studio-parent">{studio?.parent_studio?.name}</span>
|
||||
</>
|
||||
) : (
|
||||
""
|
||||
)}
|
||||
|
||||
Reference in New Issue
Block a user