File tree Expand file tree Collapse file tree 4 files changed +1
-36
lines changed
Expand file tree Collapse file tree 4 files changed +1
-36
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,6 @@ import { DEFAULT_ENTITY_KEY } from './entities';
2020import { getUndoManager } from './private-selectors' ;
2121import {
2222 getNormalizedCommaSeparable ,
23- isRawAttribute ,
2423 setNestedValue ,
2524 isNumericID ,
2625 getUserPermissionCacheKey ,
@@ -534,7 +533,7 @@ export const getRawEntityRecord = createSelector(
534533 // comparisons, and joins with edits easier.
535534 return Object . fromEntries (
536535 Object . keys ( record ) . map ( ( _key ) => {
537- if ( isRawAttribute ( config , _key ) ) {
536+ if ( config . rawAttributes . includes ( _key ) ) {
538537 const rawValue = record [ _key ] ?. raw ;
539538 return [
540539 _key ,
Original file line number Diff line number Diff line change @@ -5,7 +5,6 @@ export { default as forwardResolver } from './forward-resolver';
55export { default as onSubKey } from './on-sub-key' ;
66export { default as replaceAction } from './replace-action' ;
77export { default as withWeakMapCache } from './with-weak-map-cache' ;
8- export { default as isRawAttribute } from './is-raw-attribute' ;
98export { default as setNestedValue } from './set-nested-value' ;
109export { default as getNestedValue } from './get-nested-value' ;
1110export { default as isNumericID } from './is-numeric-id' ;
Load Diff This file was deleted.
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments