Skip to content

Sync with reactjs.org @ 4fc709d0 #270

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 28 commits into from
Dec 13, 2020
Merged
Changes from 1 commit
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
ac4254f
Move React Summit 2020 to Past Conferences section (#3378)
JoshuaKGoldberg Nov 10, 2020
9b8dee5
Remove reference to babel-polyfill (#3381)
cosmith Nov 12, 2020
a9239a5
More explicit docs about uncontrolled forms. (#3382)
VoytechG Nov 12, 2020
f595f22
Added reconciliation link. (#2614)
iMohammadReza Nov 12, 2020
38b4c5a
fix date format for firefox (#3384)
alexkrolick Nov 12, 2020
eafba20
docs: document prod vs dev behavior difference in componentDidCatch (…
FezVrasta Nov 14, 2020
fc6e864
Update legacy-event-pooling.md (#3380)
Nov 16, 2020
957276e
Update typechecking-with-proptypes.md with a minor addition (#3386)
01abhishekjain Nov 16, 2020
b236356
fix: typo (#3388)
yuqingc Nov 18, 2020
28e7b10
Update the broken links in the Overview section (#3394)
natenovielli Nov 19, 2020
f44b494
Link to TypeScript 4.1 stable release (#3395)
theMasix Nov 20, 2020
8f9ef00
Add React User Group Albania (#3390)
olsiseferi Nov 21, 2020
446ba51
Add PropType instructions for function components (#3403)
renatodex Nov 25, 2020
bb252ff
Added Toronto meetup group (#3402)
simistern Nov 26, 2020
10cf2a3
Add React JS Milano meetup (#3411)
olsiseferi Nov 27, 2020
bf09ba8
Move React conf Brasil to past conferences and reorder past conferenc…
ShayMurnin Nov 27, 2020
5e437a1
Change tabIndex to match the types (string to number) (#3409)
Nov 30, 2020
1fe2381
Adding Halifax, Nova Scotia to the list of meetups (#3419)
lauchness Dec 2, 2020
e9da0fa
Update strict-mode.md (#3426)
infinnie Dec 4, 2020
c8d1941
Fix typo in Introducing JSX snippet (#3417) (#3418)
Dec 4, 2020
4fc709d
Add React 17 release date to versioning policy (#3428)
danoc Dec 5, 2020
674ca31
merging all conflicts
reactjs-translation-bot Dec 7, 2020
f91b71d
Resolve merge conflict
taehwanno Dec 13, 2020
c88ef89
Resolve merge conflict
taehwanno Dec 13, 2020
e4b4878
Resolve merge conflict
taehwanno Dec 13, 2020
b56ad41
Resolve merge conflict
taehwanno Dec 13, 2020
61707d4
Resolve merge conflict
taehwanno Dec 13, 2020
dbf0899
Resolve merge conflict
taehwanno Dec 13, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 0 additions & 10 deletions content/docs/reference-react-component.md
Original file line number Diff line number Diff line change
Expand Up @@ -406,17 +406,7 @@ class ErrorBoundary extends React.Component {
}
```

<<<<<<< HEAD
> 주의
=======
Production and development builds of React slightly differ in the way `componentDidCatch()` handles errors.

On development, the errors will bubble up to `window`, this means that any `window.onerror` or `window.addEventListener('error', callback)` will intercept the errors that have been caught by `componentDidCatch()`.

On production, instead, the errors will not bubble up, which means any ancestor error handler will only receive errors not explicitly caught by `componentDidCatch()`.

> Note
>>>>>>> 4fc709d0576d0f0f1f8ea8b6bb341a12944b5510
Copy link
Member

@taehwanno taehwanno Dec 13, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

충돌 발생한 부분 해결하려고 살펴보니 몇 가지 문장이 번역본에서 유실되어 있는걸 확인했습니다. 따로 이슈 등록해서 처리할게요~!

(Updated) #272 로 이슈 등록해뒀습니다.

>
> 오류 이벤트 내에서는 `setState()`의 호출을 통하여 `componentDidCatch()`로 구현된 대체 UI를 렌더링할 수 있습니다. 하지만 이런 방식은 나중 릴리즈에서는 사용할 수 없게 을 것입니다.
> 대체 UI 렌더링 제어를 하려면 `static getDerivedStateFromError()`를 대신 사용하세요.
Expand Down