adoomy commited on
Commit
44adcb5
·
1 Parent(s): ffd99f4

fix: 종목명 검색 시 컨센서스 없는 종목 fallback에 누락된 DataTables 컬럼 필드 추가

Browse files
Files changed (1) hide show
  1. 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 {