esoftplay-event 0.0.1-a → 0.0.1-b
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/event/detail.tsx +1 -5
- package/package.json +1 -1
package/event/detail.tsx
CHANGED
|
@@ -291,11 +291,7 @@ export default function m(props: EventDetailProps): any {
|
|
|
291
291
|
<View style={{ height: 35, borderRadius: 17, backgroundColor: LibStyle.colorLightGrey, justifyContent: 'center', alignItems: 'center', paddingHorizontal: 9 }} >
|
|
292
292
|
<Text allowFontScaling={false} style={{ fontFamily: "ArialBold", fontSize: 12, textAlign: "center", textAlignVertical: 'center', color: 'black', marginHorizontal: 10 }} >
|
|
293
293
|
{
|
|
294
|
-
esp.lang("event/detail", "text_book_on",
|
|
295
|
-
!!result?.timezone ?
|
|
296
|
-
moment(timezoneCorrection(result.start_booking, result?.timezone)).format('DD MMMM YYYY H:mm:ss', true)
|
|
297
|
-
: moment(result.start_booking).serverFormat('DD MMMM YYYY H:mm:ss')
|
|
298
|
-
, result?.timezone_locale || "")
|
|
294
|
+
esp.lang("event/detail", "text_book_on", moment(result.start_booking).serverFormat('DD MMMM YYYY H:mm:ss', result?.timezone), result?.timezone_locale || "")
|
|
299
295
|
}
|
|
300
296
|
</Text>
|
|
301
297
|
</View>
|