fixed company filter
Browse files
app.py
CHANGED
|
@@ -40,7 +40,7 @@ def create_filter_panel(speakers, companies, sentiments, subjects):
|
|
| 40 |
if selected_speaker:
|
| 41 |
where['speaker'] = selected_speaker
|
| 42 |
if selected_company:
|
| 43 |
-
where['
|
| 44 |
if selected_sentiment:
|
| 45 |
where['sentiment'] = selected_sentiment
|
| 46 |
if selected_subject:
|
|
|
|
| 40 |
if selected_speaker:
|
| 41 |
where['speaker'] = selected_speaker
|
| 42 |
if selected_company:
|
| 43 |
+
where['company'] = selected_company
|
| 44 |
if selected_sentiment:
|
| 45 |
where['sentiment'] = selected_sentiment
|
| 46 |
if selected_subject:
|