Fixed the history toggle (Thanks to Vafin)

master
WolverinDEV 2021-01-15 21:27:58 +01:00
parent 36f5668586
commit c2bfa7b318
2 changed files with 5 additions and 2 deletions

View File

@ -1,4 +1,7 @@
# Changelog:
* **15.01.21**
- Fixed the history toggle (Thanks to Vafin)
* **12.01.21**
- Fixed bug where the quick video select popup did not start the video broadcasting
- Fixed a bug where an invalid H264 codec may caused video connection setup failure

View File

@ -185,7 +185,7 @@ const ConnectContainer = () => (
);
const ButtonToggleHistory = () => {
const state = useProperty("historyShown", false);
const [state] = useProperty("historyShown", false);
const events = useContext(EventContext);
let body;
@ -411,7 +411,7 @@ const HistoryTable = () => {
}
const HistoryContainer = () => {
const historyShown = useProperty("historyShown", false);
const [historyShown] = useProperty("historyShown", false);
return (
<div className={joinClassList(cssStyle.historyContainer, historyShown && cssStyle.shown)}>