tangled
alpha
login
or
join now
t1c.dev
/
pdsls
forked from
pds.ls/pdsls
0
fork
atom
atproto explorer
0
fork
atom
overview
issues
pulls
pipelines
reset validate when opening dialog
juli.ee
4 months ago
b3aa53fc
1c165f01
verified
This commit was signed with the committer's
known signature
.
juli.ee
SSH Key Fingerprint:
SHA256:mBrT4x0JdzLpbVR95g1hjI1aaErfC02kmLRkPXwsYCk=
+5
-1
1 changed file
expand all
collapse all
unified
split
src
components
create.tsx
+5
-1
src/components/create.tsx
···
3
3
import { getSession, OAuthUserAgent } from "@atcute/oauth-browser-client";
4
4
import { remove } from "@mary/exif-rm";
5
5
import { useNavigate, useParams } from "@solidjs/router";
6
6
-
import { createSignal, For, onCleanup, onMount, Show } from "solid-js";
6
6
+
import { createEffect, createSignal, For, onCleanup, onMount, Show } from "solid-js";
7
7
import { Editor, editorView } from "../components/editor.jsx";
8
8
import { agent } from "../components/login.jsx";
9
9
import { setNotif } from "../layout.jsx";
···
57
57
: "Unset"
58
58
);
59
59
};
60
60
+
61
61
+
createEffect(() => {
62
62
+
if (openDialog()) setValidate(undefined);
63
63
+
});
60
64
61
65
const createRecord = async (formData: FormData) => {
62
66
const repo = formData.get("repo")?.toString();