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

Binary file not shown.

4
package-lock.json generated
View file

@ -1,12 +1,12 @@
{
"name": "trilium",
"version": "0.58.5",
"version": "0.58.6",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "trilium",
"version": "0.58.5",
"version": "0.58.6",
"hasInstallScript": true,
"license": "AGPL-3.0-only",
"dependencies": {

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() {