We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ca2ad9f commit 2215f1bCopy full SHA for 2215f1b
src/Form/Field/Tags.php
@@ -168,6 +168,10 @@ public function value($value = null)
168
*/
169
public function render()
170
{
171
+ if (!$this->shouldRender()) {
172
+ return '';
173
+ }
174
+
175
$this->setupScript();
176
177
if ($this->keyAsValue) {
src/Form/Field/Textarea.php
@@ -32,6 +32,10 @@ public function rows($rows = 5)
32
33
34
35
36
37
38
39
if (is_array($this->value)) {
40
$this->value = json_encode($this->value, JSON_PRETTY_PRINT);
41
}
0 commit comments