fix(core): audio player ux (#11685)

This commit is contained in:
pengx17
2025-04-15 07:31:06 +00:00
committed by Peng Xiao
parent 793d084077
commit 46f3dfc64c
3 changed files with 12 additions and 20 deletions

View File

@@ -111,7 +111,7 @@ export const AudioPlayer = ({
waveform={waveform || []}
progress={progressPercentage}
onManualSeek={handleProgressClick}
loading={loading}
loading={!waveform || waveform.length === 0}
/>
<div className={styles.timeDisplay}>{formatTime(duration)}</div>
</div>