@ardimedia/angular-portal-azure 0.2.326 → 0.2.327
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/apn.js +2 -2
- package/package.json +1 -1
package/apn.js
CHANGED
|
@@ -337,7 +337,7 @@ var angularportalazure;
|
|
|
337
337
|
// Set 'this.portalService.areaBlades.blades[index]' to 'this'
|
|
338
338
|
// 'this.portalService.areaBlades.blades[index]' was generated during AddBlade
|
|
339
339
|
_this.portalService.areaBlades.blades.forEach(function (blade, index) {
|
|
340
|
-
if (blade.path.toLowerCase() === _this.path.toLowerCase()) {
|
|
340
|
+
if (blade.path != null && _this.path != null && blade.path.toLowerCase() === _this.path.toLowerCase()) {
|
|
341
341
|
_this.portalService.areaBlades.blades[index] = _this;
|
|
342
342
|
}
|
|
343
343
|
});
|
|
@@ -349,7 +349,7 @@ var angularportalazure;
|
|
|
349
349
|
get: function () {
|
|
350
350
|
return this._path;
|
|
351
351
|
},
|
|
352
|
-
// For the moment we do
|
|
352
|
+
// For the moment we do distinguish between lower and upper case path name
|
|
353
353
|
set: function (newPath) {
|
|
354
354
|
if (newPath == null) {
|
|
355
355
|
return;
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@ardimedia/angular-portal-azure",
|
|
3
3
|
"description": "Angular Portal Azure - GUI Framework.",
|
|
4
4
|
"author": "Ardimedia Anstalt <info@ardimedia.com> (http://www.ardimedia.com)",
|
|
5
|
-
"version": "0.2.
|
|
5
|
+
"version": "0.2.327",
|
|
6
6
|
"main": "index.js",
|
|
7
7
|
"typings": "apn.d.ts",
|
|
8
8
|
"dependencies": {
|