Skip to content

Commit 9df362e

Browse files
Fixing Input & Type Node
1 parent 9d51edb commit 9df362e

File tree

6 files changed

+5
-5
lines changed

6 files changed

+5
-5
lines changed

public/favicon.ico

-15 KB
Binary file not shown.

public/favicon.png

54.9 KB
Loading

public/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html lang="en">
33
<head>
44
<meta charset="utf-8" />
5-
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
5+
<link rel="icon" href="%PUBLIC_URL%/favicon.png" />
66
<meta name="viewport" content="width=device-width, initial-scale=1" />
77
<meta name="theme-color" content="#000000" />
88
<meta name="description" content="React Chatbot" />

src/Component/ChatFlow/NodeSetting/InputNodeSetting.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ const InputNodeSetting: FunctionComponent<Props> = ({
3636
return (
3737
<div>
3838
<div className="text-sm font-bold text-gray-500 text-start">Message</div>
39-
<div className="w-full py-3">
39+
<div className="w-full py-2">
4040
<TextareaAutosize
4141
onChange={(e) => {
4242
const updateValue = e.target.value;

src/Component/ChatFlow/NodeSetting/TypeNodeSetting.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,9 @@ const TypeNodeSetting: React.FunctionComponent<Props> = ({
4343
const options = ["Start", "Keyword", "Reply"];
4444

4545
return (
46-
<div>
46+
<div className="mb-3">
4747
<div className="text-sm font-bold text-gray-500 text-start">Type</div>
48-
<div className="w-full py-3">
48+
<div className="w-full py-2">
4949
<Autocomplete
5050
onChange={handleChange}
5151
disablePortal

src/Component/ChatFlow/index.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ const BasicFlow = () => {
6565
</span>
6666
</div> */}
6767
<div className="text-sm font-bold text-gray-500 text-start mb-2 grid grid-cols-3">
68-
<span className="col-span-1">Message ID</span>
68+
<span className="col-span-1">Block ID</span>
6969
<span className="text-sm text-gray-500 text-start col-span-2 font-normal">
7070
: {selectedNode ? selectedNode.id : "Empty"}
7171
</span>

0 commit comments

Comments
 (0)