Merge branch 'benphelps:main' into feature/mealie-widget

pull/1820/head
joncrangle 10 months ago committed by GitHub
commit dc19ce4d38
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -670,9 +670,9 @@
"maxPlayers": "Jugadores máximos",
"bots": "Bots",
"ping": "Ping",
"status": "Status",
"online": "Online",
"offline": "Offline"
"status": "Estado",
"online": "En línea",
"offline": "Sin conexión"
},
"azuredevops": {
"result": "Resultado",

@ -670,9 +670,9 @@
"maxPlayers": "Joueurs max",
"bots": "Bots",
"ping": "Ping",
"status": "Status",
"online": "Online",
"offline": "Offline"
"status": "Statut",
"online": "En ligne",
"offline": "Hors ligne"
},
"azuredevops": {
"result": "Résultat",

@ -31,7 +31,7 @@ export default function Component({ service }) {
const printingStateFalgs = ["Printing", "Paused", "Pausing", "Resuming"];
if (printingStateFalgs.includes(state)) {
const { completion } = jobStats.progress;
const { completion } = jobStats?.progress ?? undefined;
if (!jobStats || !completion) {
return (

Loading…
Cancel
Save