Merge pull request woocommerce/woocommerce-admin#1548 from woocommerce/fix/stock-status-link

Stock Report: fix stock link
This commit is contained in:
Paul Sealock 2019-02-15 09:42:37 +13:00 committed by GitHub
commit 87151fa1e3
1 changed files with 1 additions and 1 deletions

View File

@ -76,7 +76,7 @@ export default class StockReportTable extends Component {
);
const stockStatusLink = (
<Link href={ 'post.php?action=edit&post=' + parent_id || id } type="wp-admin">
<Link href={ 'post.php?action=edit&post=' + ( parent_id || id ) } type="wp-admin">
{ stockStatuses[ stock_status ] }
</Link>
);