mirror of
https://github.com/zadam/trilium.git
synced 2025-10-20 15:19:01 +02:00
fix(client): close button not working on first render
This commit is contained in:
parent
f068b335f5
commit
b9055c6810
@ -1,10 +1,10 @@
|
||||
import { useState } from "preact/hooks";
|
||||
import { useEffect, useState } from "preact/hooks";
|
||||
import { t } from "../../services/i18n";
|
||||
import ActionButton from "../react/ActionButton";
|
||||
import { useNoteContext, useTriliumEvent } from "../react/hooks";
|
||||
|
||||
export default function ClosePaneButton() {
|
||||
const { noteContext, parentComponent } = useNoteContext();
|
||||
const { noteContext, ntxId, parentComponent } = useNoteContext();
|
||||
const [ isEnabled, setIsEnabled ] = useState(false);
|
||||
|
||||
function refresh() {
|
||||
@ -12,6 +12,7 @@ export default function ClosePaneButton() {
|
||||
}
|
||||
|
||||
useTriliumEvent("noteContextReorder", refresh);
|
||||
useEffect(refresh, [ ntxId ]);
|
||||
|
||||
return (
|
||||
<ActionButton
|
||||
|
Loading…
x
Reference in New Issue
Block a user