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

This commit is contained in:
joncrangle 2023-08-11 15:10:16 -04:00 committed by GitHub
commit dc19ce4d38
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 7 deletions

View File

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

View File

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

View File

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