Browse Source

Remocao do atributo has_votos

pull/3425/head
AlGouvea 4 years ago
parent
commit
8b96214f0a
  1. 3
      frontend/src/__apps/painel/main.js

3
frontend/src/__apps/painel/main.js

@ -21,7 +21,6 @@ const v = new Vue({ // eslint-disable-line
sessao_solene_tema: '',
presentes: [],
oradores: [],
has_votos: false,
numero_votos_sim: 0,
numero_votos_nao: 0,
numero_abstencoes: 0,
@ -74,14 +73,12 @@ const v = new Vue({ // eslint-disable-line
var color = 'white'
if (parlamentar.voto === 'Voto Informado' || parlamentar.voto === '') {
color = 'yellow'
this.has_votos = false
} else {
if (parlamentar.voto === 'Sim') {
color = 'green'
} else if (parlamentar.voto === 'Não') {
color = 'red'
}
this.has_votos = true
}
parlamentar.color = color
},

Loading…
Cancel
Save