Fixed a bug where getOldPropertyValues didn't check for the same instance of a property but rather their value. Added nav template. Fixed pagination so that the list can be null, though it's not ideal.
This commit is contained in:
@ -384,7 +384,7 @@ Array.prototype.getPropertyValues = function () {
|
||||
Array.prototype.getOldPropertyValues = function (property, oldValue) {
|
||||
var ret = [];
|
||||
this.forEach(prop => {
|
||||
if (prop == property) {
|
||||
if (prop === property) {
|
||||
ret.push(oldValue);
|
||||
} else {
|
||||
if (prop instanceof IgniteProperty) {
|
||||
|
Reference in New Issue
Block a user