mirror of
https://github.com/zadam/trilium.git
synced 2025-02-24 23:13:43 +08:00
small fixes of steel blue theme
This commit is contained in:
parent
58d71bf8e3
commit
b567775129
3 changed files with 3 additions and 3 deletions
BIN
db/demo.zip
BIN
db/demo.zip
Binary file not shown.
4
package-lock.json
generated
4
package-lock.json
generated
|
@ -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": {
|
||||
|
|
|
@ -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() {
|
||||
|
|
Loading…
Reference in a new issue