ga4-export-fixer 0.4.3-dev.4 → 0.4.3
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/README.md +1 -1
- package/package.json +1 -1
- package/tables/ga4EventsEnhanced.js +3 -3
package/README.md
CHANGED
package/package.json
CHANGED
|
@@ -347,9 +347,9 @@ const createEnhancedEventsTable = (dataformPublish, config) => {
|
|
|
347
347
|
config.dataformTableConfig
|
|
348
348
|
);
|
|
349
349
|
|
|
350
|
-
//
|
|
351
|
-
|
|
352
|
-
const tableDescription = documentation.getTableDescription(mergedConfig);
|
|
350
|
+
// Pass dataformTableConfig to getTableDescription via a new object to avoid mutating mergedConfig
|
|
351
|
+
// (Dataform's sandboxed runtime may freeze objects returned by mergeSQLConfigurations)
|
|
352
|
+
const tableDescription = documentation.getTableDescription({ ...mergedConfig, dataformTableConfig });
|
|
353
353
|
|
|
354
354
|
// Set description (user override from the merge wins if provided)
|
|
355
355
|
if (!dataformTableConfig.description) {
|