PluginProbe
HubSpot All-In-One Marketing – Forms, Popups, Live Chat / 11.3.75
HubSpot All-In-One Marketing – Forms, Popups, Live Chat v11.3.75
11.3.75 11.3.73 11.3.71 11.3.70 11.3.69 11.3.64 11.3.65 11.3.62 11.3.61 11.3.56 11.3.58 11.0.31 11.0.52 11.0.54 11.0.56 11.0.58 11.0.7 11.1.10 11.1.11 11.1.13 11.1.14 11.1.15 11.1.2 11.1.20 11.1.21 All 73 releases
← All changes | scripts/utils/withMetaData.ts +2 -2 11.1.211.3.75 View file →
@@ -4,9 +4,9 @@
4 4 export const isFullSiteEditor = () => {
5 5 return select && !!select('core/edit-site');
6 6 };
7 7
8 -const applyWithSelect = withSelect((select: Function, props: any): any => {
8 +const applyWithSelect: any = withSelect((select: Function, props: any): any => {
9 9 return {
10 10 metaValue: select('core/editor').getEditedPostAttribute('meta')[
11 11 props.metaKey
12 12 ],
@@ -12,9 +12,9 @@
12 12 ],
13 13 };
14 14 });
15 15
16 -const applyWithDispatch = withDispatch(
16 +const applyWithDispatch: any = withDispatch(
17 17 (dispatch: Function, props: any): any => {
18 18 return {
19 19 setMetaValue(value: string) {
20 20 dispatch('core/editor').editPost({ meta: { [props.metaKey]: value } });