mirror of
http://112.124.100.131/huang.ze/ebiz-dify-ai.git
synced 2025-12-10 19:36:53 +08:00
fix voice input in safari (#537)
This commit is contained in:
@@ -56,7 +56,10 @@ const VoiceInput = ({
|
|||||||
const y = (v - 128) / 50 * canvas.height
|
const y = (v - 128) / 50 * canvas.height
|
||||||
|
|
||||||
ctx.moveTo(x, 16)
|
ctx.moveTo(x, 16)
|
||||||
ctx.roundRect(x, 16 - y, 2, y, [1, 1, 0, 0])
|
if (ctx.roundRect)
|
||||||
|
ctx.roundRect(x, 16 - y, 2, y, [1, 1, 0, 0])
|
||||||
|
else
|
||||||
|
ctx.rect(x, 16 - y, 2, y)
|
||||||
ctx.fill()
|
ctx.fill()
|
||||||
x += 3
|
x += 3
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user