Skip to content

Commit

Permalink
fix(flat-components): edit room page build type error (#610)
Browse files Browse the repository at this point in the history
* fix(flat-components): edit room page build type error

* chore(package): upgrade tool-box
  • Loading branch information
hyrious committed May 8, 2021
1 parent 79bf7c3 commit 84be862
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion desktop/renderer-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"@netless/player-controller": "^0.0.9",
"@netless/preview-controller": "^0.0.9",
"@netless/redo-undo": "^0.0.5",
"@netless/tool-box": "^0.1.3",
"@netless/tool-box": "^0.1.4",
"@netless/white-audio-plugin": "^2.0.3",
"@netless/white-video-plugin": "^2.0.3",
"@netless/zoom-controller": "^0.1.1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export const PeriodicEndTypeSelector: FC<PeriodicEndTypeSelectorProps> = props =
return (
<Select {...props}>
{["rate", "time"].map(type => {
const periodicEndTypeName = getPeriodicEndTypeName(type);
const periodicEndTypeName = getPeriodicEndTypeName(type as PeriodicEndType);
return (
<Select.Option key={type} value={type} label={periodicEndTypeName}>
{periodicEndTypeName}
Expand Down
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2434,10 +2434,10 @@
resolved "https://registry.yarnpkg.com/@netless/redo-undo/-/redo-undo-0.0.5.tgz#c5b00f5940ef33a0d6a810cd0935f4d9c172ea52"
integrity sha512-P8ceK3hSY2eMfFIjBeSpRsqXpjjTea9bBWyRF8t8q0kLR4ICld2VMFMRbytqZ8sjCFy9CgbicuBOdMj7juABIQ==

"@netless/tool-box@^0.1.3":
version "0.1.3"
resolved "https://registry.npmjs.org/@netless/tool-box/-/tool-box-0.1.3.tgz#09d775174039b38098724d26ab8daad6bcd032bc"
integrity sha512-vGJvzoi00uIm3rBOePgjsFLk8596Vym8yyuEk/CdBT0mhZP+lAnlLmpGb7uV8vM1vhIf6v8toKlFm4NojaX/Fw==
"@netless/tool-box@^0.1.4":
version "0.1.4"
resolved "https://registry.npmjs.org/@netless/tool-box/-/tool-box-0.1.4.tgz#ec6ae89b17d2caab1d3132f46140f20b9666f0aa"
integrity sha512-hpJ1RBasFaHmP8LFlMkycjfka4AplmZHfl1SMVUsWAOeRvclUB2++I+wbGoOe8lZ+QNOTQSUWlL/Ve+dRieRSg==

"@netless/white-audio-plugin@^2.0.3":
version "2.0.3"
Expand Down

0 comments on commit 84be862

Please sign in to comment.