mirror of
https://github.com/Luzifer/browserphone.git
synced 2024-11-08 13:50:05 +00:00
Fix: For DTMF the numbers must be strings
Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
parent
401a1311ba
commit
c55d74ac3d
1 changed files with 1 additions and 1 deletions
|
@ -61,7 +61,7 @@ export default {
|
|||
|
||||
computed: {
|
||||
keys() {
|
||||
return [1, 2, 3, 4, 5, 6, 7, 8, 9, '*', 0, '#']
|
||||
return ['1', '2', '3', '4', '5', '6', '7', '8', '9', '*', '0', '#']
|
||||
},
|
||||
|
||||
ongoingCall() {
|
||||
|
|
Loading…
Reference in a new issue