1
0
Fork 0
mirror of https://github.com/anyproto/anytype-ts.git synced 2025-06-08 05:57:02 +09:00
This commit is contained in:
Andrew Simachev 2025-02-27 16:34:53 +01:00
parent 0c2826e81e
commit d05d46d5d8
No known key found for this signature in database
GPG key ID: 1DFE44B21443F0EF
3 changed files with 6 additions and 8 deletions

View file

@ -76,7 +76,7 @@ class Server {
};
this.lastErrors.push(chunk);
Util.log('warn', chunk);
console.log(chunk);
});
this.cp.on('exit', () => {

View file

@ -112,13 +112,7 @@ class UpdateManager {
};
checkUpdate (auto) {
if (!this.isAllowed()) {
return;
};
Util.log('info', 'isUpdating: ' + this.isUpdating);
if (this.isUpdating) {
if (!this.isAllowed() || this.isUpdating) {
return;
};

View file

@ -37,6 +37,10 @@
border-radius: 50%; opacity: 0; transition: opacity 0.2s $easeInQuint; opacity: 0;
}
.item.isButton {
.iconWrap { background-color: var(--color-shape-highlight-dark); }
}
.item:hover, .item.hover { padding: 0px; }
.item.isActive::after { opacity: 1; }