Skip to content

Commit

Permalink
fix(script): 修复2倍速被删除的BUG
Browse files Browse the repository at this point in the history
  • Loading branch information
enncy committed Mar 1, 2024
1 parent 4df2d52 commit a861685
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/scripts/src/utils/configs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import { createRangeTooltip } from '.';
export const playbackRate: Config = {
label: '视频倍速',
tag: 'select',
options: [1, 1.25, 1.5, 1.75, 2.25, 2.5, 2.75, 3, 3.5, 4, 4.5, 5, 6, 7, 8, 12, 16].map((rate) => [
options: [1, 1.25, 1.5, 1.75, 2, 2.25, 2.5, 2.75, 3, 3.5, 4, 4.5, 5, 6, 7, 8, 12, 16].map((rate) => [
rate.toString(),
rate + ' x'
]),
Expand Down

0 comments on commit a861685

Please sign in to comment.