mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-11-23 18:52:25 +08:00
Comments: Fixed failing tests due to unset template variable
This commit is contained in:
parent
9a2ef7ef44
commit
88aae5b004
|
@ -42,6 +42,7 @@ class CommentController extends Controller
|
|||
$comment = $this->commentRepo->create($page, $request->get('text'), $request->get('parent_id'));
|
||||
|
||||
return view('comments.comment-branch', [
|
||||
'readOnly' => false,
|
||||
'branch' => [
|
||||
'comment' => $comment,
|
||||
'children' => [],
|
||||
|
@ -66,7 +67,7 @@ class CommentController extends Controller
|
|||
|
||||
$comment = $this->commentRepo->update($comment, $request->get('text'));
|
||||
|
||||
return view('comments.comment', ['comment' => $comment]);
|
||||
return view('comments.comment', ['comment' => $comment, 'readOnly' => false]);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue
Block a user