@elementor/editor-editing-panel 4.2.0-888 → 4.2.0-895

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.mjs CHANGED
@@ -6772,9 +6772,12 @@ function getDynamicValue(name, settings) {
6772
6772
  return tagValue;
6773
6773
  }
6774
6774
  return new Promise((resolve) => {
6775
- dynamicTags.refreshCacheFromServer(() => {
6776
- resolve(getTagValue());
6777
- });
6775
+ dynamicTags.refreshCacheFromServer(
6776
+ () => {
6777
+ resolve(getTagValue());
6778
+ },
6779
+ { disableCache: true }
6780
+ );
6778
6781
  });
6779
6782
  }
6780
6783