Skip to content

Commit 3756998

Browse files
committed
chore: address review feedback
1 parent 2a882af commit 3756998

3 files changed

Lines changed: 9 additions & 1 deletion

File tree

.github/workflows/cloudflare-pages-preview.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ name: Cloudflare Pages Preview
33
on:
44
pull_request:
55

6+
concurrency:
7+
group: ${{ github.workflow }}-${{ github.event.pull_request.number }}
8+
cancel-in-progress: true
9+
610
permissions:
711
contents: read
812
deployments: write

.github/workflows/surge-preview.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ name: Surge Preview
33
on:
44
pull_request:
55

6+
concurrency:
7+
group: ${{ github.workflow }}-${{ github.event.pull_request.number }}
8+
cancel-in-progress: true
9+
610
permissions:
711
contents: read
812
pull-requests: write

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ Online demo: https://dialog.react-component.vercel.app/
8989
| prefixCls | Component class name prefix | string | `rc-dialog` |
9090
| scrollLock | Whether to lock body scroll when open | boolean | true |
9191
| style | Root dialog style | `React.CSSProperties` | - |
92-
| styles | Semantic styles | `{ header?: CSSProperties; body?: CSSProperties; footer?: CSSProperties; mask?: CSSProperties; content?: CSSProperties; wrapper?: CSSProperties }` | - |
92+
| styles | Semantic styles | `{ header?: React.CSSProperties; body?: React.CSSProperties; footer?: React.CSSProperties; mask?: React.CSSProperties; content?: React.CSSProperties; wrapper?: React.CSSProperties }` | - |
9393
| title | Dialog title | `React.ReactNode` | - |
9494
| transitionName | Dialog transition class name | string | - |
9595
| visible | Whether the dialog is visible | boolean | false |

0 commit comments

Comments
 (0)