Skip to content

Commit

Permalink
Fix parent input field in uploadView (#879)
Browse files Browse the repository at this point in the history
  • Loading branch information
postrowinski committed Oct 2, 2023
1 parent d24a0ed commit f42bbc5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mwdb/web/src/components/Views/UploadView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ export function UploadView() {
style={{ fontSize: "medium" }}
placeholder="(Optional) Type parent identifier..."
value={searchParams.get("parent") || parent}
onChange={(e) => handleParentChange}
onChange={handleParentChange}
disabled={
!isEmpty(searchParams.get("parent"))
}
Expand Down

0 comments on commit f42bbc5

Please sign in to comment.