From 1c8f53a122ed2990d3707567bff98cefa4909eb7 Mon Sep 17 00:00:00 2001 From: Emilo2 <99644577+Emilo2@users.noreply.github.com> Date: Wed, 28 Jan 2026 13:06:59 +0200 Subject: [PATCH] Fixed formatting --- .../src/components/Scenes/SceneDetails/SceneDetailPanel.tsx | 6 +++--- ui/v2.5/src/components/Tagger/scenes/StashSearchResult.tsx | 6 +++++- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/ui/v2.5/src/components/Scenes/SceneDetails/SceneDetailPanel.tsx b/ui/v2.5/src/components/Scenes/SceneDetails/SceneDetailPanel.tsx index 461f3c64e..ad7663e9d 100644 --- a/ui/v2.5/src/components/Scenes/SceneDetails/SceneDetailPanel.tsx +++ b/ui/v2.5/src/components/Scenes/SceneDetails/SceneDetailPanel.tsx @@ -78,9 +78,9 @@ export const SceneDetailPanel: React.FC = (props) => {
- :{" "} - {TextUtils.formatDateTime(intl, props.scene.created_at)}{" "} -
+ :{" "} + {TextUtils.formatDateTime(intl, props.scene.created_at)}{" "} +
:{" "} {TextUtils.formatDateTime(intl, props.scene.updated_at)}{" "} diff --git a/ui/v2.5/src/components/Tagger/scenes/StashSearchResult.tsx b/ui/v2.5/src/components/Tagger/scenes/StashSearchResult.tsx index 44347b18c..7243bf3a9 100755 --- a/ui/v2.5/src/components/Tagger/scenes/StashSearchResult.tsx +++ b/ui/v2.5/src/components/Tagger/scenes/StashSearchResult.tsx @@ -381,7 +381,11 @@ const StashSearchResult: React.FC = ({ 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) ),