Update app.py
Browse files
app.py
CHANGED
@@ -102,7 +102,7 @@ with tabs[1]:
|
|
102 |
with col3:
|
103 |
purchase_price = st.number_input("Edit Purchase Price", min_value=0.0, value=selected_sale['Purchase Price'], key="edit_stock_sale_purchase_price")
|
104 |
with col4:
|
105 |
-
sell_quantity = st.number_input("Quantity", min_value=0
|
106 |
with col5:
|
107 |
holding_period_months = st.number_input("Edit Holding Period (Months)", min_value=0, value=selected_sale['Holding Period (Months)'], key="edit_stock_sale_holding_period")
|
108 |
|
|
|
102 |
with col3:
|
103 |
purchase_price = st.number_input("Edit Purchase Price", min_value=0.0, value=selected_sale['Purchase Price'], key="edit_stock_sale_purchase_price")
|
104 |
with col4:
|
105 |
+
sell_quantity = st.number_input("Quantity", min_value=0, value=selected_sale['Quantity'], key="edit_stock_sale_qty")
|
106 |
with col5:
|
107 |
holding_period_months = st.number_input("Edit Holding Period (Months)", min_value=0, value=selected_sale['Holding Period (Months)'], key="edit_stock_sale_holding_period")
|
108 |
|