Browse Source

Merge branch 'iteration-20240624' into jenkins

lex 1 year ago
parent
commit
a839d25b4d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/views/user-info/music-operation/index.tsx

+ 1 - 1
src/views/user-info/music-operation/index.tsx

@@ -148,7 +148,7 @@ export default defineComponent({
       if (!this.form.composer) {
         this.form.composer = data.composer
       }
-      if (!this.form.playSpeed && data.speed) {
+      if (data.speed) {
         this.form.playSpeed = '' + data.speed
       }
     },