This is an automated email from the ASF dual-hosted git repository. liudongkai pushed a commit to branch 3.0.0-beta-2-prepare in repository https://gitbox.apache.org/repos/asf/dolphinscheduler.git
commit ac5179be73feeb75908d9751a294a1753d6f5856 Author: Devosend <[email protected]> AuthorDate: Thu Jun 16 13:51:17 2022 +0800 fix rename form not init bug in file manange (#10471) (cherry picked from commit d1cae6025b7a8c6427120ecfeb8a2c8b1e4bbb72) --- dolphinscheduler-ui/src/views/resource/file/rename/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dolphinscheduler-ui/src/views/resource/file/rename/index.tsx b/dolphinscheduler-ui/src/views/resource/file/rename/index.tsx index 34578835f5..d57302c362 100644 --- a/dolphinscheduler-ui/src/views/resource/file/rename/index.tsx +++ b/dolphinscheduler-ui/src/views/resource/file/rename/index.tsx @@ -57,7 +57,7 @@ export default defineComponent({ } watch( - () => props.name, + () => props.show, () => { state.renameForm.id = props.id state.renameForm.name = props.name
