Commit 670cf6e1ecc78e1ca04bf260c71d4cf2e49d6802
Merge branch 'fix/visual-control-slider' into 'main_dev'
fix: 修复看板控制组件下发输入密码过后出错 See merge request yunteng/thingskit-front!1434
Showing
2 changed files
with
2 additions
and
2 deletions
... | ... | @@ -70,7 +70,7 @@ |
70 | 70 | |
71 | 71 | const handleAfterChange = (value) => { |
72 | 72 | if (unref(getDesign).password) { |
73 | - openModal(true, { password: unref(getDesign).password }); | |
73 | + openModal(true, { password: unref(getDesign).password, value: value }); | |
74 | 74 | unref(sliderElRef)?.blur(); |
75 | 75 | return; |
76 | 76 | } | ... | ... |