We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c185b0f commit 3bd0c99Copy full SHA for 3bd0c99
visualpython/js/com/component/PackageManager.js
@@ -325,6 +325,7 @@ define([
325
super.render();
326
327
let that = this;
328
+ let loadingSpinner = new LoadingSpinner($(this.wrapSelector('.vp-popup-body')));
329
vpConfig.getData('', 'vppackman').then(function(savedData) {
330
// Reset abnormal data
331
if (savedData == undefined || savedData.packageList === undefined) {
@@ -335,7 +336,7 @@ define([
335
336
that.packageLib = {
337
...savedData.packageList
338
};
-
339
+ loadingSpinner.remove();
340
// load package list
341
that.loadPackageList();
342
}).catch(function(err) {
@@ -344,7 +345,7 @@ define([
344
345
346
...that.packageLibTemplate
347
348
349
350
351
});
0 commit comments