Skip to content

Commit fc52d95

Browse files
authored
Merge pull request #153 from reactjs/sync-a11c2534
Sync with reactjs.org @ a11c253
2 parents c079bb3 + 5ef0217 commit fc52d95

File tree

6 files changed

+7
-6
lines changed

6 files changed

+7
-6
lines changed

content/community/conferences.md

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ October 7-8, 2021. In-person in Amsterdam, Netherlands + remote (hybrid event)
2222

2323
[Website](https://www.reactlive.nl/) - [Twitter](https://twitter.com/reactlivenl) - [LinkedIn](https://www.linkedin.com/company/frontendlove/)
2424

25+
2526
### React Brussels 2021 {#react-brussels-2021}
2627
October 15, 2021 - remote event
2728

content/docs/handling-events.md

+1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ sẽ có đôi chút khác biệt trong React:
3030
```
3131

3232
Một điểm khác biệt nữa trong React là bạn không thể trả về `false` để chặn những hành vi mặc định mà phải gọi `preventDefault` trực tiếp. Lấy ví dụ với đoạn HTML sau, để chặn hành vi mặc định của đường dẫn là mở trang mới, bạn có thể viết:
33+
3334
```html
3435
<form onsubmit="console.log('You clicked submit.'); return false">
3536
<button type="submit">Submit</button>

content/docs/thinking-in-react.md

-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ Vì mô hình dữ liệu thường hiển thị dưới dạng chuỗi JSON, n
4242
![Sơ đồ Component](../images/blog/thinking-in-react-components.png)
4343

4444
Trong ứng dụng dưới đây, bạn sẽ thấy chúng ta có 5 component, dữ liệu mà mỗi component hiển thị sẽ được in nghiêng
45-
4645
1. **`FilterableProductTable` (orange):** chứa toàn bộ cả ứng dụng
4746
2. **`SearchBar` (blue):** nơi *người dùng nhập từ khoá tìm kiếm*
4847
3. **`ProductTable` (green):** lọc và hiển thị *kết quả* dựa trên *từ khoá tìm kiếm*
Loading

src/components/Banner/Banner.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import {colors, fonts, media} from 'theme';
1111
import ExternalLinkSvg from 'templates/components/ExternalLinkSvg';
1212

1313
const linkProps = {
14-
href: 'https://www.surveymonkey.co.uk/r/673TZ7T',
14+
href: 'https://surveys.savanta.com/survey/selfserve/21e3/210643?list=2',
1515
target: '_blank',
1616
rel: 'noopener',
1717
};
@@ -135,7 +135,7 @@ export default function Banner() {
135135
target="_blank"
136136
rel="noopener">
137137
<span css={{color: colors.brand}}>
138-
Take our 2020 Community Survey!
138+
Take our 2021 Community Survey!
139139
</span>
140140
<ExternalLinkSvg
141141
cssProps={{

src/html.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -62,11 +62,11 @@ export default class HTML extends React.Component<Props> {
6262
}
6363
6464
activeBanner = {
65-
storageId: 'reactjs_banner_2020survey',
65+
storageId: 'reactjs_banner_2021survey',
6666
normalHeight: 50,
6767
smallHeight: 75,
68-
campaignStartDate: '2020-10-05T00:00:00Z', // the Z is for UTC
69-
campaignEndDate: '2020-10-19T00:00:00Z', // the Z is for UTC
68+
campaignStartDate: '2021-08-16T00:00:00Z', // the Z is for UTC
69+
campaignEndDate: '2021-08-31T00:00:00Z', // the Z is for UTC
7070
snoozeForDays: 7,
7171
};
7272

0 commit comments

Comments
 (0)