Dummy data on default current_picture to avoid javascript errors

This commit is contained in:
Antoine Bartuccio 2024-09-04 16:59:04 +02:00 committed by thomas girod
parent 71602b43bd
commit 727e5cb199

View File

@ -19,9 +19,21 @@ document.addEventListener("alpine:init", () => {
identifications: [],
/**
* The currently displayed picture
* Default dummy data are pre-loaded to avoid javascript error
* when loading the page at the beginning
* @type Picture
**/
current_picture: undefined,
current_picture: {
is_moderated: true,
id: null,
name: "",
display_name: "",
compressed_url: "",
profile_url: "",
full_size_url: "",
owner: "",
date: new Date(),
},
/**
* The picture which will be displayed next if the user press the "next" button
* @type ?Picture