Skip to content

Commit 0a69cef

Browse files
committed
Merge branch 'main' into docs
2 parents 8c67c0f + f8c3ba4 commit 0a69cef

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/pages/Docs/md/deploy-guide.en.mdx

-1
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,3 @@ To ensure data security and ease of use, PageSpy offers a variety of complete, o
1111
- [Deploy with Node](./deploy-with-node)
1212
- [Deploy with Docker](./deploy-with-docker)
1313
- [Install on Baota](./deploy-with-bt)
14-
- [Install on 1Panel](./deploy-with-1panel)

src/pages/Docs/md/deploy-guide.zh.mdx

-1
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,3 @@ import ApiImg from '@/assets/image/screenshot/page-spy-api.png';
1111
- [使用 Node 部署](./deploy-with-node)
1212
- [使用 Docker 部署](./deploy-with-docker)
1313
- [在宝塔面板安装](./deploy-with-bt)
14-
- [在 1Panel 安装](./deploy-with-1panel)

src/pages/Replay/PlayControl/components/Actions.tsx

+5-3
Original file line numberDiff line numberDiff line change
@@ -55,11 +55,13 @@ export const Actions = memo(() => {
5555
<Space size="small" className="right-actions">
5656
<Select
5757
size="middle"
58-
variant="borderless"
5958
defaultValue={speed}
6059
placeholder={t('replay.speed')}
61-
style={{ width: 65 }}
62-
suffixIcon={null}
60+
style={{ width: 70 }}
61+
labelRender={({ label, value }) => {
62+
if (value === 1) return t('replay.speed');
63+
return label;
64+
}}
6365
options={[
6466
{ label: '0.5x', value: 0.5 },
6567
{ label: '1.0x', value: 1 },

0 commit comments

Comments
 (0)