Fixed the history toggle (Thanks to Vafin)
This commit is contained in:
parent
36f5668586
commit
c2bfa7b318
2 changed files with 5 additions and 2 deletions
|
@ -1,4 +1,7 @@
|
||||||
# Changelog:
|
# Changelog:
|
||||||
|
* **15.01.21**
|
||||||
|
- Fixed the history toggle (Thanks to Vafin)
|
||||||
|
|
||||||
* **12.01.21**
|
* **12.01.21**
|
||||||
- Fixed bug where the quick video select popup did not start the video broadcasting
|
- 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
|
- Fixed a bug where an invalid H264 codec may caused video connection setup failure
|
||||||
|
|
|
@ -185,7 +185,7 @@ const ConnectContainer = () => (
|
||||||
);
|
);
|
||||||
|
|
||||||
const ButtonToggleHistory = () => {
|
const ButtonToggleHistory = () => {
|
||||||
const state = useProperty("historyShown", false);
|
const [state] = useProperty("historyShown", false);
|
||||||
const events = useContext(EventContext);
|
const events = useContext(EventContext);
|
||||||
|
|
||||||
let body;
|
let body;
|
||||||
|
@ -411,7 +411,7 @@ const HistoryTable = () => {
|
||||||
}
|
}
|
||||||
|
|
||||||
const HistoryContainer = () => {
|
const HistoryContainer = () => {
|
||||||
const historyShown = useProperty("historyShown", false);
|
const [historyShown] = useProperty("historyShown", false);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className={joinClassList(cssStyle.historyContainer, historyShown && cssStyle.shown)}>
|
<div className={joinClassList(cssStyle.historyContainer, historyShown && cssStyle.shown)}>
|
||||||
|
|
Loading…
Add table
Reference in a new issue