Skip to content

Commit ab651b0

Browse files
committed
Add business summary to Overview tab
1 parent 2f11a53 commit ab651b0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/ui/layout.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,8 @@ def render_overview(financial_data):
8989

9090
with st.container():
9191
st.markdown("#### Company Profile")
92+
company_summary_expander = st.expander("Business Summary")
93+
company_summary_expander.write(quotes["longBusinessSummary"])
9294
# sector
9395
# industry
9496
# employees
@@ -97,7 +99,6 @@ def render_overview(financial_data):
9799
# Currency
98100
# website
99101
# (?) logo
100-
st.write(f"{quotes['longBusinessSummary']}")
101102

102103

103104
def render_balance_sheet(financial_data):

0 commit comments

Comments
 (0)