Skip to content

Commit

Permalink
Merge pull request #732 from TheBnl/patch-5
Browse files Browse the repository at this point in the history
Make Show in table extendable
  • Loading branch information
wilr committed Dec 2, 2019
2 parents 6a8746e + 5adbfcf commit 0bb8080
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/Model/OrderAttribute.php
Expand Up @@ -72,6 +72,8 @@ public function getCartTitle()

public function ShowInTable()
{
return true;
$showInTable = true;
$this->extend('updateShowInTable', $showInTable);
return $showInTable;
}
}

0 comments on commit 0bb8080

Please sign in to comment.