From 81386523875180a7d168743309c561f9f1197918 Mon Sep 17 00:00:00 2001 From: Thomas Peterson Date: Fri, 25 Jul 2025 11:43:50 +0200 Subject: [PATCH] Fixes --- src/Option/Parser/Text.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Option/Parser/Text.php b/src/Option/Parser/Text.php index 0b114aa..9f89777 100644 --- a/src/Option/Parser/Text.php +++ b/src/Option/Parser/Text.php @@ -19,7 +19,7 @@ class Text extends Base parent::parseJson(); if ($this->json['default']) { - $this->element->setValue((string) $this->json['default']); + $this->element->setDefault((string) $this->json['default']); } if (isset($this->json['dependencys']) && count($this->json['dependencys']) > 0) {