From 79d09d5bafa9a7d9ac9edd2ff2087a470ff8881d Mon Sep 17 00:00:00 2001 From: Abdul Malik Ikhsan Date: Tue, 29 Apr 2025 15:54:28 +0700 Subject: [PATCH] Add codeMirror => true, on AstDetailController --- src/Ast/Controller/AstDetailController.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Ast/Controller/AstDetailController.php b/src/Ast/Controller/AstDetailController.php index 82189564a..8bfeff4ff 100644 --- a/src/Ast/Controller/AstDetailController.php +++ b/src/Ast/Controller/AstDetailController.php @@ -22,6 +22,7 @@ public function __invoke(string $hash): View 'page_title' => 'Play with AST', 'astRun' => $astRun, 'inputFormContents' => $astRun->getContent(), + 'codeMirror' => true, ]); } }