Skip to content

Commit

Permalink
Merge pull request #110 from Veriteworks/fix-pdf-font
Browse files Browse the repository at this point in the history
Fix pdf font and checkout template
  • Loading branch information
lenaorobei authored Feb 4, 2020
2 parents 78398d7 + a07ea8c commit 14c9362
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 10 deletions.
2 changes: 1 addition & 1 deletion ConfigurablePdfFont/Model/Font.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public function __construct(
$this->name = $data['name'];
$this->regular = $data['regular'];
$this->bold = $data['bold'] ?? null;
$this->italic = $data['bold'] ?? null;
$this->italic = $data['italic'] ?? null;
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,10 @@
<!-- ko template: 'CommunityEngineering_JapaneseAddress/checkout/billing-address/details' --><!-- /ko -->
<fieldset class="fieldset" data-bind="visible: !isAddressDetailsVisible()">
<each args="getRegion('billing-address-list')" render="" />
<div class="actions-toolbar">
<div class="primary">
<button class="action action-update" type="button" data-bind="click: updateAddress">
<span data-bind="i18n: 'Update'"></span>
</button>
<button class="action action-cancel" type="button" data-bind="click: cancelAddressEdit">
<span data-bind="i18n: 'Cancel'"></span>
</button>
</div>
<div data-bind="fadeVisible: isAddressFormVisible">
<render args="formTemplate"/>
</div>
<render args="actionsTemplate"/>
</fieldset>

</div>

0 comments on commit 14c9362

Please sign in to comment.