어디 선가 발생한 css 오류 덮어씌우기
2023. 6. 2. 17:08ㆍ개발/토막난 상식
반응형
난 준적이 없는 배경색이 들어가 있어서
style={isFunction(onRowClick) ? { cursor: 'pointer' } : { cursor: 'auto' }}
className={index === selectedIndex ? 'table_tr_selected' : '' }
>>>>>>
style={
isFunction(onRowClick) ? { cursor: 'pointer', ...(index === selectedIndex ? { backgroundColor: '#3c8dbc', color: 'white' } : {}) }
: { cursor: 'auto', ...(index === selectedIndex ? { backgroundColor: '#3c8dbc', color: 'white' } : {}) }
}
이렇게 어거지로 바꾼 ㅜㅜ 일단 이렇게 하고 넘어갑니다. 나중에 고치러 다시오겠습니다.
반응형
'개발 > 토막난 상식' 카테고리의 다른 글
상위 컴포넌트로 obj 한글 문제 없이 전달 (0) | 2023.06.07 |
---|---|
상위 컴포넌트로 전달 useImperativeHandle & forwardRef (0) | 2023.06.07 |
파이썬 ** (0) | 2023.06.02 |
배열 문법 선호도 (0) | 2023.06.02 |
react-dom.development.js:11340 Uncaught DOMException: Failed to execute 'insertBefore' on 'Node': The node before which the new node is to be inserted is not a child of this node. (0) | 2023.05.30 |