File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed File renamed without changes.
Original file line number Diff line number Diff line change 5
5
<svg-icon :name =" isPlaying ? 'audio-pause' : 'audio-play'" />
6
6
</div >
7
7
8
- <line -control
8
+ <audio -control
9
9
ref-id =" progress"
10
10
:percentage =" progress"
11
11
@change-linehead =" onUpdateProgress"
21
21
</template >
22
22
23
23
<script >
24
- import SvgIcon from ' ../SvgIcon'
25
- import LineControl from ' ./LineControl '
24
+ import SvgIcon from ' ../../components/ SvgIcon'
25
+ import AudioControl from ' ./AudioControl '
26
26
27
27
export default {
28
28
name: ' AudioPlayer' ,
29
29
components: {
30
30
SvgIcon,
31
- LineControl
31
+ AudioControl
32
32
},
33
33
34
34
props: {
Original file line number Diff line number Diff line change 169
169
<script >
170
170
import SvgIcon from ' ../../components/SvgIcon'
171
171
import FormatMessage from ' ../../components/FormatMessage'
172
- import AudioPlayer from ' ../../components/audio/AudioPlayer'
173
172
174
173
import MessageReply from ' ./MessageReply'
175
174
import MessageImage from ' ./MessageImage'
176
175
import MessageActions from ' ./MessageActions'
177
176
import MessageReactions from ' ./MessageReactions'
177
+ import AudioPlayer from ' ./AudioPlayer'
178
178
179
179
const { isImageFile } = require (' ../../utils/media-file' )
180
180
You can’t perform that action at this time.
0 commit comments