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:
2023-04-15 08:27:11 -07:00
parent 485f8ae2bd
commit 1ccd66910c
2 changed files with 24 additions and 3 deletions

View File

@ -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) {