모의투자 화면수정
This commit is contained in:
@@ -45,11 +45,20 @@ const TradeSplitOrderPanel: React.FC<TradeSplitOrderPanelProps> = ({
|
||||
const resolvedBuyFill = fillBuy ?? (fillRequest?.side === 'buy' ? fillRequest : null);
|
||||
const resolvedSellFill = fillSell ?? (fillRequest?.side === 'sell' ? fillRequest : null);
|
||||
|
||||
const paperAutoOffHint =
|
||||
paperTradingEnabled && !paperAutoTradeEnabled ? (
|
||||
<span className="ptd-split-card-head-hint" title="자동매매 OFF · 수동 주문만 모의 계좌에 체결됩니다.">
|
||||
자동매매 OFF · 수동 주문만 모의 계좌에 체결됩니다.
|
||||
</span>
|
||||
) : null;
|
||||
|
||||
return (
|
||||
<PaperSplitPanel
|
||||
className={`ptd-split-panel--right${className ? ` ${className}` : ''}`}
|
||||
topTitle="매수"
|
||||
topTitleAside={paperAutoOffHint}
|
||||
bottomTitle="매도"
|
||||
bottomTitleAside={paperAutoOffHint}
|
||||
top={(
|
||||
<TradeBuyOrderPanel
|
||||
market={market}
|
||||
|
||||
Reference in New Issue
Block a user