diff --git a/app/components/ReleaseInfo/ReleaseInfo.Basics.tsx b/app/components/ReleaseInfo/ReleaseInfo.Basics.tsx index 50fdd5b..c23cf4f 100644 --- a/app/components/ReleaseInfo/ReleaseInfo.Basics.tsx +++ b/app/components/ReleaseInfo/ReleaseInfo.Basics.tsx @@ -13,7 +13,7 @@ export const ReleaseInfoBasics = (props: { const [isFullDescription, setIsFullDescription] = useState(false); return ( - +
{ return ( - + diff --git a/app/components/ReleasePlayer/ReleasePlayerCustom.tsx b/app/components/ReleasePlayer/ReleasePlayerCustom.tsx index 4fea4ee..9e89055 100644 --- a/app/components/ReleasePlayer/ReleasePlayerCustom.tsx +++ b/app/components/ReleasePlayer/ReleasePlayerCustom.tsx @@ -282,7 +282,7 @@ export const ReleasePlayerCustom = (props: { }, [episode.selected]); return ( - + {( !voiceover.selected || !source.selected || diff --git a/app/pages/Release.tsx b/app/pages/Release.tsx index c29864f..581e7f6 100644 --- a/app/pages/Release.tsx +++ b/app/pages/Release.tsx @@ -71,80 +71,83 @@ export const ReleasePage = (props: any) => { } return ( - <> -
-
- -
-
- -
-
- +
+ + + +
+
+
+ {data.release.status && + data.release.status.name.toLowerCase() != "анонс" && ( + <> + {preferenceStore.params.experimental.newPlayer ? + + : } + + )} +
- {data.release.status && - data.release.status.name.toLowerCase() != "анонс" && ( -
- {preferenceStore.params.experimental.newPlayer ? - - : } -
- )} - {data.release.status && - data.release.status.name.toLowerCase() != "анонс" && ( -
- -
- )} -
+
+ {data.release.status && + data.release.status.name.toLowerCase() != "анонс" && ( +
+ +
+ )} { delayed={data.release.hold_on_count} watching={data.release.watching_count} /> -
- - {data.release.screenshot_images.length > 0 && ( -
+ {data.release.screenshot_images.length > 0 && ( -
- )} - - {data.release.related_releases.length > 0 && ( -
+ )} + {data.release.related_releases.length > 0 && ( -
- )} - -
- + )}
- +
); };