inibase 1.0.0-rc.53 → 1.0.0-rc.54
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/dist/utils.server.js +1 -1
- package/package.json +1 -1
package/dist/utils.server.js
CHANGED
|
@@ -217,7 +217,7 @@ export const isEqual = (originalValue, comparedAtValue, fieldType) => {
|
|
|
217
217
|
return Number(originalValue) === Number(comparedAtValue);
|
|
218
218
|
// Default comparison.
|
|
219
219
|
default:
|
|
220
|
-
return originalValue
|
|
220
|
+
return originalValue == comparedAtValue;
|
|
221
221
|
}
|
|
222
222
|
};
|
|
223
223
|
/**
|