fix: 종목명 검색 시 컨센서스 없는 종목 fallback에 누락된 DataTables 컬럼 필드 추가
Browse files- static/app.js +3 -0
static/app.js
CHANGED
|
@@ -226,6 +226,9 @@ function applyFilters() {
|
|
| 226 |
.map(c => screenerMap.get(c.ticker) || {
|
| 227 |
ticker: c.ticker, name: c.name, market: c.market,
|
| 228 |
current_price: null, market_cap: null, is_stale: false,
|
|
|
|
|
|
|
|
|
|
| 229 |
_no_consensus: true,
|
| 230 |
});
|
| 231 |
} else {
|
|
|
|
| 226 |
.map(c => screenerMap.get(c.ticker) || {
|
| 227 |
ticker: c.ticker, name: c.name, market: c.market,
|
| 228 |
current_price: null, market_cap: null, is_stale: false,
|
| 229 |
+
forward_per: null, pbr: null, roe_fwd: null,
|
| 230 |
+
rev_growth: null, op_growth: null, op_margin: null,
|
| 231 |
+
est_dividend_yield: null, payout_ratio: null, dividend_years: null,
|
| 232 |
_no_consensus: true,
|
| 233 |
});
|
| 234 |
} else {
|