Fixed the history toggle (Thanks to Vafin)
parent
36f5668586
commit
c2bfa7b318
|
@ -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
|
||||
|
|
|
@ -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)}>
|
||||
|
|
Loading…
Reference in New Issue