Skip to content

Commit

Permalink
Merge pull request #1047 from pattern-lab/fix/misc-uikit-fixes
Browse files Browse the repository at this point in the history
UIKit Bug Fixes
  • Loading branch information
bmuenzenmeyer committed Sep 1, 2019
2 parents 44a2fbd + c0c5bff commit d1344d3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,8 @@ export const panelsViewer = {

const templateHighlighted = Prism.highlight(
templateFormatted,
Prism.languages[panels[i].name.toLowerCase()] || 'markup'
Prism.languages[panels[i].name.toLowerCase()] ||
Prism.languages['markup']
// Prism.languages[panels[i].name.toLowerCase()],
);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@ class IFrame extends BaseComponent {
store.getState().app.viewportPx &&
store.getState().app.viewportPx <= this.clientWidth
? store.getState().app.viewportPx + 'px;'
: this.clientWidth + 'px;';
: '100%';

return (
<div class="pl-c-viewport pl-js-viewport">
Expand Down

0 comments on commit d1344d3

Please sign in to comment.