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", "name": "trilium",
"version": "0.58.5", "version": "0.58.6",
"lockfileVersion": 2, "lockfileVersion": 2,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "trilium", "name": "trilium",
"version": "0.58.5", "version": "0.58.6",
"hasInstallScript": true, "hasInstallScript": true,
"license": "AGPL-3.0-only", "license": "AGPL-3.0-only",
"dependencies": { "dependencies": {

View File

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