pull/89/head
doggybootsy 3 years ago
parent 76c7361267
commit 0359d7323c

@ -76,7 +76,7 @@
flex-direction: column;
align-items: center;
}
.discoverHeader-Ijkm_M {
.discoverHeader-3th5O9 {
width: 0;
visibility: hidden;
margin-left: 0;
@ -129,4 +129,15 @@
.panels-j1Uci_ {
width: var(--vz-dashboard-sidebar-width);
}
// MacOs drag zone
.platform-osx &::before {
content: "";
position: fixed;
top: 0;
left: 0;
right: 0;
height: 22px;
z-index: 10;
-webkit-app-region: drag;
}
}

@ -172,7 +172,10 @@ export default class Updater extends Builtin {
if (!update.updateId) {
throw new Error('no update ID provided');
}
const entity = vizality.manager[toPlural(update.type)].get(update.addonId);
let entity = window.vizality;
if (update.updateId !== 'vizality') {
entity = vizality.manager[toPlural(update.type)].get(update.addonId);
}
const success = await entity._update(force);
if (success) {
this._removeUpdate(update);

Loading…
Cancel
Save