mirror of
https://github.com/anyproto/anytype-ts.git
synced 2025-06-08 05:57:02 +09:00
fixes
This commit is contained in:
parent
0c2826e81e
commit
d05d46d5d8
3 changed files with 6 additions and 8 deletions
|
@ -76,7 +76,7 @@ class Server {
|
|||
};
|
||||
|
||||
this.lastErrors.push(chunk);
|
||||
Util.log('warn', chunk);
|
||||
console.log(chunk);
|
||||
});
|
||||
|
||||
this.cp.on('exit', () => {
|
||||
|
|
|
@ -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;
|
||||
};
|
||||
|
||||
|
|
|
@ -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; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue