Fixed formatting

This commit is contained in:
Emilo2 2026-01-28 13:06:59 +02:00
parent a4016543af
commit 1c8f53a122
2 changed files with 8 additions and 4 deletions

View file

@ -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)}{" "}

View file

@ -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)
),