mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
fix: query checking (#2137)
fix: the logic should be to check if object exist not if it's true or false
This commit is contained in:
parent
1a37668f0b
commit
991258084e
@ -25,12 +25,7 @@ const Editor: NextPage = () => {
|
||||
|
||||
const isEditable = editable === "true";
|
||||
|
||||
const {
|
||||
watch,
|
||||
setValue,
|
||||
control,
|
||||
formState: { errors },
|
||||
} = useForm({
|
||||
const { watch, setValue, control } = useForm({
|
||||
defaultValues: {
|
||||
data: "",
|
||||
data_html: "",
|
||||
@ -39,11 +34,11 @@ const Editor: NextPage = () => {
|
||||
|
||||
useEffect(() => {
|
||||
setIsLoading(true);
|
||||
if (!isEditable) return;
|
||||
if (!router?.query?.["editable"]) return;
|
||||
setIsLoading(false);
|
||||
const data_html = Cookies.get("data_html");
|
||||
setValue("data_html", data_html ?? "");
|
||||
}, [isEditable, setValue]);
|
||||
}, [isEditable, setValue, router]);
|
||||
|
||||
return (
|
||||
<WebViewLayout fullScreen={isLoading}>
|
||||
|
Loading…
Reference in New Issue
Block a user