diff --git a/client/src/app/component/content/PredictionChart.js b/client/src/app/component/content/PredictionChart.js index ee0af04..6f657f9 100644 --- a/client/src/app/component/content/PredictionChart.js +++ b/client/src/app/component/content/PredictionChart.js @@ -55,7 +55,7 @@ const PredictionChart = ({ years, values, companyName, country, type }) => { ? "Rebemue" : "Expense" }: %{customdata}`, - customdata: values.map(formatValue), + customdata: type === "market" ? values : values.map(formatValue), }, ]; diff --git a/client/src/app/styles/styles.css b/client/src/app/styles/styles.css index 6073974..465adff 100644 --- a/client/src/app/styles/styles.css +++ b/client/src/app/styles/styles.css @@ -1079,6 +1079,6 @@ body { .rs-modal-md { width: auto; - max-width: calc(100% - 880px); + max-width: 620px; /* overflow-y: hidden; */ }