mirror of
				https://github.com/mealie-recipes/mealie.git
				synced 2025-10-31 10:13:32 -04:00 
			
		
		
		
	fix: Make Mealie Timezone-Aware (#3847)
Co-authored-by: boc-the-git <3479092+boc-the-git@users.noreply.github.com>
This commit is contained in:
		| @@ -8,7 +8,7 @@ | ||||
|     <template v-if="!useMobileFormat" #opposite> | ||||
|       <v-chip v-if="event.timestamp" label large> | ||||
|         <v-icon class="mr-1"> {{ $globals.icons.calendar }} </v-icon> | ||||
|         {{ new Date(event.timestamp+"Z").toLocaleDateString($i18n.locale) }} | ||||
|         {{ new Date(event.timestamp).toLocaleDateString($i18n.locale) }} | ||||
|       </v-chip> | ||||
|     </template> | ||||
|     <v-card | ||||
| @@ -25,7 +25,7 @@ | ||||
|           <v-col v-if="useMobileFormat" align-self="center" class="pr-0"> | ||||
|               <v-chip label> | ||||
|               <v-icon> {{ $globals.icons.calendar }} </v-icon> | ||||
|               {{ new Date(event.timestamp+"Z").toLocaleDateString($i18n.locale) }} | ||||
|               {{ new Date(event.timestamp || "").toLocaleDateString($i18n.locale) }} | ||||
|               </v-chip> | ||||
|           </v-col> | ||||
|           <v-col v-else cols="9" style="margin: auto; text-align: center;"> | ||||
|   | ||||
		Reference in New Issue
	
	Block a user