From 8b96214f0af92e3417761487b951de2086211cca Mon Sep 17 00:00:00 2001 From: AlGouvea Date: Wed, 14 Jul 2021 12:19:35 -0300 Subject: [PATCH] Remocao do atributo has_votos --- frontend/src/__apps/painel/main.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/frontend/src/__apps/painel/main.js b/frontend/src/__apps/painel/main.js index d4da987a3..89e0a7a17 100644 --- a/frontend/src/__apps/painel/main.js +++ b/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 },