small fixes of steel blue theme

This commit is contained in:
zadam
2023-01-17 21:06:30 +01:00
parent 58d71bf8e3
commit b567775129
3 changed files with 3 additions and 3 deletions

View File

@@ -303,7 +303,7 @@ export default class GlobalMenuWidget extends BasicWidget {
const resp = await fetch(RELEASES_API_URL);
const data = await resp.json();
return data.tag_name.substring(1);
return data?.tag_name?.substring(1);
}
downloadLatestVersionCommand() {