Skip to content

Commit

Permalink
Publication 1.3.5
Browse files Browse the repository at this point in the history
Refactor authorize/capture commands to be more compliant with payment logic.
Fix monitoring details page.
  • Loading branch information
Oleg Malichenko authored Apr 23, 2019
1 parent 69a11d4 commit 77f70a0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"type": "magento2-module",
"description": "Vipps Payment Method",
"license": "proprietary",
"version": "1.3.4",
"version": "1.3.5",
"require": {
"magento/framework": "102.0.*",
"magento/module-sales": "102.0.*",
Expand Down
8 changes: 4 additions & 4 deletions view/adminhtml/templates/monitoring/view.phtml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
/** @var \Vipps\Payment\Block\Monitoring\View $block */
$vippsQuote = $block->getVippsQuote();
$attempts = $block->getAttempts();
$quote = $block->getQuote();
?>
<div class="fieldset-wrapper">
<div class="fieldset-wrapper-title">
Expand Down Expand Up @@ -61,10 +62,9 @@ $attempts = $block->getAttempts();
<div class="fieldset-wrapper-title">
<span class="title"><?= __('Quote Information'); ?></span>
</div>
<?php if ($loadingError = $block->getQuoteLoadingError()) : ?>
<?= $loadingError; ?>
<?php else : ?>
<?php $quote = $block->getQuote(); ?>
<?php if (!isset($quote)) : ?>
<?= $block->getQuoteLoadingError(); ?>
<?php else: ?>
<table class="admin__table-secondary">
<tbody>
<tr>
Expand Down

0 comments on commit 77f70a0

Please sign in to comment.