mirror of
https://github.com/stashapp/stash.git
synced 2026-02-08 08:21:32 +01:00
Fixed formatting
This commit is contained in:
parent
a4016543af
commit
1c8f53a122
2 changed files with 8 additions and 4 deletions
|
|
@ -78,9 +78,9 @@ export const SceneDetailPanel: React.FC<ISceneDetailProps> = (props) => {
|
|||
<div className="row">
|
||||
<div className={`${sceneDetailsWidth} col-12 scene-details`}>
|
||||
<h6>
|
||||
<FormattedMessage id="created_at" />:{" "}
|
||||
{TextUtils.formatDateTime(intl, props.scene.created_at)}{" "}
|
||||
</h6>
|
||||
<FormattedMessage id="created_at" />:{" "}
|
||||
{TextUtils.formatDateTime(intl, props.scene.created_at)}{" "}
|
||||
</h6>
|
||||
<h6>
|
||||
<FormattedMessage id="updated_at" />:{" "}
|
||||
{TextUtils.formatDateTime(intl, props.scene.updated_at)}{" "}
|
||||
|
|
|
|||
|
|
@ -381,7 +381,11 @@ const StashSearchResult: React.FC<IStashSearchResultProps> = ({
|
|||
title: resolveField("title", stashScene.title, scene.title),
|
||||
details: resolveField("details", stashScene.details, scene.details),
|
||||
date: resolveField("date", stashScene.date, scene.date),
|
||||
production_date: resolveField("production_date", stashScene.production_date, scene.production_date),
|
||||
production_date: resolveField(
|
||||
"production_date",
|
||||
stashScene.production_date,
|
||||
scene.production_date
|
||||
),
|
||||
performer_ids: uniq(
|
||||
stashScene.performers.map((p) => p.id).concat(filteredPerformerIDs)
|
||||
),
|
||||
|
|
|
|||
Loading…
Reference in a new issue