From b09a02382a83c543cf9c81813505c94ce073caac Mon Sep 17 00:00:00 2001 From: Darko Gjorgjijoski Date: Tue, 24 Sep 2024 10:21:20 +0200 Subject: [PATCH] Add textare to does not work reason --- src/Configuration.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/Configuration.php b/src/Configuration.php index 31b99f5..acc4e54 100644 --- a/src/Configuration.php +++ b/src/Configuration.php @@ -62,6 +62,7 @@ public function __construct( $config ) { 'reason_found_better_plugin_text' => 'Please share which plugin', 'reason_no_longer_needed' => 'I no longer need the plugin', 'reason_does_not_work' => 'I couldn\'t get the plugin to work', + 'reason_does_not_work_text' => 'Please share more details about the issue', 'reason_other' => 'Other', 'reason_other_text' => 'Please share the reason', ] ); @@ -166,6 +167,10 @@ public function getDefaultReasons() { [ 'id' => 'does_not_work', 'title' => $this->i18n['reason_does_not_work'], + 'text' => [ + 'enabled' => true, + 'placeholder' => $this->i18n['reason_does_not_work_text'], + ], ], [ 'id' => 'other',