mirror of
https://github.com/stashapp/stash.git
synced 2025-12-27 10:43:25 +01:00
Add missing gallery card classes (#2654)
This commit is contained in:
parent
803d865348
commit
3d52bad9bd
1 changed files with 8 additions and 4 deletions
|
|
@ -167,12 +167,16 @@ export const GalleryCard: React.FC<IProps> = (props) => {
|
|||
}
|
||||
overlays={maybeRenderSceneStudioOverlay()}
|
||||
details={
|
||||
<>
|
||||
<span>{props.gallery.date}</span>
|
||||
<div className="gallery-card__details">
|
||||
<span className="gallery-card__date">{props.gallery.date}</span>
|
||||
<p>
|
||||
<TruncatedText text={props.gallery.details} lineCount={3} />
|
||||
<TruncatedText
|
||||
className="gallery-card__description"
|
||||
text={props.gallery.details}
|
||||
lineCount={3}
|
||||
/>
|
||||
</p>
|
||||
</>
|
||||
</div>
|
||||
}
|
||||
popovers={maybeRenderPopoverButtonGroup()}
|
||||
selected={props.selected}
|
||||
|
|
|
|||
Loading…
Reference in a new issue