We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dbe6670 commit 34efb86Copy full SHA for 34efb86
CHANGELOG.md
@@ -4,6 +4,8 @@ Yii2 multiple input change log
4
1.2.11 in development
5
---------------------
6
7
+- Bug #61: Fixed a rendering of remove button
8
+
9
1.2.10
10
------
11
src/renderers/TableRenderer.php
@@ -238,7 +238,7 @@ private function getActionButton($index)
238
}
239
240
$index += 1;
241
- if ($index < $this->min || $index == $this->limit) {
+ if ($index < $this->min) {
242
return '';
243
} elseif ($index == $this->min) {
244
return $this->addButtonPosition == self::POS_ROW ? $this->renderAddButton() : '';
0 commit comments