@capillarytech/creatives-library 8.0.41 → 8.0.42
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/package.json
CHANGED
|
@@ -82,6 +82,7 @@ function capReducer(state = fromJS(initialState.cap), action) {
|
|
|
82
82
|
case types.GET_SCHEMA_FOR_ENTITY_REQUEST:
|
|
83
83
|
return state
|
|
84
84
|
.set('fetchingSchema', true)
|
|
85
|
+
.set('fetchingLiquidTags', false)
|
|
85
86
|
.set('fetchingSchemaError', false);
|
|
86
87
|
case types.GET_SCHEMA_FOR_ENTITY_FAILURE:
|
|
87
88
|
return state
|
|
@@ -121,6 +122,7 @@ function capReducer(state = fromJS(initialState.cap), action) {
|
|
|
121
122
|
const stateMeta = state.get("metaEntities");
|
|
122
123
|
return state
|
|
123
124
|
.set('fetchingSchema', false)
|
|
125
|
+
.set('fetchingLiquidTags', false)
|
|
124
126
|
.set('metaEntities', {
|
|
125
127
|
layouts: action.data && action.entityType === 'LAYOUT' ? action.data.metaEntities : stateMeta.layouts,
|
|
126
128
|
tags: action.data && action.entityType === 'TAG' ? action.data.metaEntities : stateMeta.tags,
|