We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d1344d3 commit d645ea1Copy full SHA for d645ea1
packages/uikit-workshop/src/scripts/components/pl-viewport/pl-viewport.js
@@ -348,7 +348,10 @@ class IFrame extends BaseComponent {
348
if (window.patternData) {
349
patternParam = window.patternData.patternPartial;
350
} else {
351
- patternParam = 'all'; // @todo: this should also be able to be dynamically set via PL config file
+ patternParam =
352
+ window.config && window.config.defaultPattern
353
+ ? window.config.defaultPattern
354
+ : 'all';
355
}
356
357
0 commit comments