This commit is contained in:
weiz 2024-04-09 10:57:39 +08:00
parent 7a8cf5f7bd
commit a5388c0138
3 changed files with 6 additions and 3 deletions

View File

@ -132,7 +132,7 @@
*/ */
public function sceneAdd() public function sceneAdd()
{ {
return $this->remove('id', true); return $this->remove('id', true)->remove('flow_id', true)->remove('path', true);
} }
@ -144,6 +144,7 @@
*/ */
public function sceneEdit() public function sceneEdit()
{ {
return $this->remove('flow_id', true)->remove('path', true);
} }

View File

@ -100,7 +100,7 @@
*/ */
public function sceneAdd() public function sceneAdd()
{ {
return $this->remove('id', true); return $this->remove('id', true)->remove('flow_id', true)->remove('path', true);
} }
@ -112,6 +112,7 @@
*/ */
public function sceneEdit() public function sceneEdit()
{ {
return $this->remove('flow_id', true)->remove('path', true);
} }

View File

@ -101,7 +101,7 @@
*/ */
public function sceneAdd() public function sceneAdd()
{ {
return $this->remove('id', true); return $this->remove('id', true)->remove('flow_id', true)->remove('path', true);
} }
@ -113,6 +113,7 @@
*/ */
public function sceneEdit() public function sceneEdit()
{ {
return $this->remove('flow_id', true)->remove('path', true);
} }