Procházet zdrojové kódy

Fill waveform parent height

Use height of parent container in waveform canvas.
pull/1/head
TheoryOfNekomata před 1 rokem
rodič
revize
edb4b0acfc
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. +1
    -1
      packages/web-kitchensink-reactnext/src/packages/react-wavesurfer/WaveformCanvas/index.tsx

+ 1
- 1
packages/web-kitchensink-reactnext/src/packages/react-wavesurfer/WaveformCanvas/index.tsx Zobrazit soubor

@@ -78,7 +78,7 @@ export const WaveformCanvas = React.forwardRef<SpectrogramCanvasDerivedComponent
const { default: WaveSurfer } = await import('wavesurfer.js'); const { default: WaveSurfer } = await import('wavesurfer.js');
const waveSurferInstance = WaveSurfer.create({ const waveSurferInstance = WaveSurfer.create({
container: containerRef.current, container: containerRef.current,
height: containerRef.current.clientHeight,
height: 'auto',
autoplay: autoPlay, autoplay: autoPlay,
fillParent: true, fillParent: true,
waveColor, waveColor,


Načítá se…
Zrušit
Uložit