darsoarafa commited on
Commit
0740e13
·
verified ·
1 Parent(s): 37e86eb

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -185,15 +185,15 @@ if (annyang) {
185
  document.getElementById('speechStatus').innerText = 'Alamat prospek diisi: ' + value;
186
  },
187
  'jenis individu': function() {
188
- document.getElementById('jenis_prospek').value = 'Individu';
189
  document.getElementById('speechStatus').innerText = 'Jenis prospek: Individu';
190
  },
191
  'jenis perusahaan': function() {
192
- document.getElementById('jenis_prospek').value = 'Perusahaan';
193
  document.getElementById('speechStatus').innerText = 'Jenis prospek: Perusahaan';
194
  },
195
  'jenis kafe': function() {
196
- document.getElementById('jenis_prospek').value = 'Kafe';
197
  document.getElementById('speechStatus').innerText = 'Jenis prospek: Kafe';
198
  },
199
  'tanggal *value': function(value) {
 
185
  document.getElementById('speechStatus').innerText = 'Alamat prospek diisi: ' + value;
186
  },
187
  'jenis individu': function() {
188
+ document.getElementById('jenis_prospek').querySelector('input').value = 'Individu';
189
  document.getElementById('speechStatus').innerText = 'Jenis prospek: Individu';
190
  },
191
  'jenis perusahaan': function() {
192
+ document.getElementById('jenis_prospek').querySelector('input').value = 'Perusahaan';
193
  document.getElementById('speechStatus').innerText = 'Jenis prospek: Perusahaan';
194
  },
195
  'jenis kafe': function() {
196
+ document.getElementById('jenis_prospek').querySelector('input').value = 'Kafe';
197
  document.getElementById('speechStatus').innerText = 'Jenis prospek: Kafe';
198
  },
199
  'tanggal *value': function(value) {