Skip to content

Commit 60bdf1b

Browse files
committed
Fix import
1 parent 72ae90d commit 60bdf1b

File tree

1 file changed

+2
-2
lines changed
  • web/apps/labelstudio/src/pages/CreateProject/Import

1 file changed

+2
-2
lines changed

web/apps/labelstudio/src/pages/CreateProject/Import/Import.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { useCallback, useEffect, useReducer, useRef, useState } from "react";
22
import { Modal } from "../../../components/Modal/Modal";
33
import { cn } from "../../../utils/bem";
4-
import { cn as scn } from "@humansignal/shad/utils/utils";
4+
import { cn as scn } from "@humansignal/shad/utils";
55
import { unique } from "../../../utils/helpers";
66
import "./Import.scss";
77
import { IconError, IconInfo, IconUpload } from "../../../assets/icons";
@@ -338,7 +338,7 @@ export const ImportPage = ({
338338
<input id="file-input" type="file" name="file" multiple onChange={onUpload} style={{ display: "none" }} />
339339

340340
<header>
341-
<form className={`${importClass.elem("url-form")} inline`} method="POST" onSubmit={onLoadURL}>
341+
<form className={`${importClass.elem("url-form")} inline-flex`} method="POST" onSubmit={onLoadURL}>
342342
<Input placeholder="Dataset URL" name="url" ref={urlRef} style={{ height: 40 }} />
343343
<Button type="submit" look="primary">
344344
Add URL

0 commit comments

Comments
 (0)