We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7bdc948 commit d888339Copy full SHA for d888339
1 file changed
src/Traits/HasApiCreate.php
@@ -24,7 +24,7 @@ trait HasApiCreate
24
*/
25
public function _self_path()
26
{
27
- return $this->form(true)->store();
+ return $this->form(false)->store();
28
}
29
30
/**
@@ -35,6 +35,6 @@ public function create()
35
36
$content = new Content();
37
//这里必须这样写
38
- return $content->body($this->form())->className('m-10');
+ return $content->body($this->form(false))->className('m-10');
39
40
0 commit comments