summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorteh_coderer <me@tehcoderer.com>2023-05-31 12:15:51 -0400
committerGitHub <noreply@github.com>2023-05-31 16:15:51 +0000
commit646819c2f17c3d66140ec38176be2975aaac7181 (patch)
tree3025670989d47a920c92f93fbd9d5db5cc1af4a4
parentd1f734243ec5e0db95e59108c6c9c53258f3f4eb (diff)
hotfix/ Dashboards random issue with theme not loading (#5082)
* fix: random issue with theme not loading * set dark
-rw-r--r--openbb_terminal/dashboards/streamlit_run.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/openbb_terminal/dashboards/streamlit_run.py b/openbb_terminal/dashboards/streamlit_run.py
index bfdc61c174b..7c14766b76d 100644
--- a/openbb_terminal/dashboards/streamlit_run.py
+++ b/openbb_terminal/dashboards/streamlit_run.py
@@ -5,6 +5,9 @@ from pathlib import Path
import streamlit.web.bootstrap
from openbb_terminal.core.config.paths import REPOSITORY_DIRECTORY
+from openbb_terminal.core.plots.plotly_helper import theme
+
+theme.apply_style("dark")
def main():