@oliasoft-open-source/react-ui-library 5.15.0-beta-1 → 5.15.1-beta-1
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/index.js +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -9056,7 +9056,7 @@ const ComparisonViewModal = ({ auditLog: e, auditLogs: t, data: n, isOpen: r, se
|
|
|
9056
9056
|
}
|
|
9057
9057
|
], g = ({ diffs: e, userName: t, source: n, operation: r, operationMetaData: i }) => {
|
|
9058
9058
|
let a = countDeltas(e), o = a.total ? `${a.total} change${a.total === 1 ? "" : "s"}` : "no field changes";
|
|
9059
|
-
if (n === "API") return r === "Created" ?
|
|
9059
|
+
if (n === "API") return r === "Created" ? "Created through API" : "Changed through API";
|
|
9060
9060
|
switch (r) {
|
|
9061
9061
|
case "Created": return `Created by ${t}`;
|
|
9062
9062
|
case "Cloned": return `Cloned by ${t} (from ${i || "unknown"})`;
|
package/package.json
CHANGED