Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Reset label #23

Merged
merged 23 commits into from
Oct 11, 2023
Merged
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
90d5fd5
fixed chat reset and css issues
yuvraj-singh-codes Sep 4, 2023
fda89d7
removed commented code
yuvraj-singh-codes Sep 5, 2023
4508c2c
hide faq type in sources
yuvraj-singh-codes Sep 5, 2023
5e599f4
Merge branch 'bug-fixes/yuvraj' of https://github.com/yuvraj2011/docs…
yuvraj-singh-codes Sep 5, 2023
43b0d7c
created iframe resizable chatBox
yuvraj-singh-codes Sep 6, 2023
1ad5ba7
removed user resizable feature
yuvraj-singh-codes Sep 7, 2023
68947b1
rename folder and file name for embedded chat
yuvraj-singh-codes Sep 7, 2023
7761cc0
fixed design and responsiveness of embedded chat and removed header
yuvraj-singh-codes Sep 7, 2023
cbb8534
fixed bugs and added feature to remove float button if embedded
yuvraj-singh-codes Sep 7, 2023
b05619f
file name update and button text change in embedded
yuvraj-singh-codes Sep 7, 2023
00be543
removed input ref focus for embedded chat
yuvraj-singh-codes Sep 7, 2023
da5b050
fixed embedded chatbox width and height
yuvraj-singh-codes Sep 8, 2023
2a0c47e
Merge branch 'yuvraj/bug-fixes' of https://github.com/yuvraj2011/docs…
yuvraj-singh-codes Sep 8, 2023
78314c6
changed id name and entry points
yuvraj-singh-codes Sep 9, 2023
a390543
Minor css changes
uglyrobot Sep 11, 2023
fa45973
handled case if no embedded div found in dom and removed button
yuvraj-singh-codes Sep 12, 2023
33f2eee
added dynamic rendering of embedded chat and widget , reduced code size
yuvraj-singh-codes Sep 13, 2023
3adba78
Add optional header removal
uglyrobot Sep 14, 2023
ea16d46
Merge branch 'embedded_chatbox' of https://github.com/yuvraj2011/docs…
yuvraj-singh-codes Sep 15, 2023
05334c3
Merge branch 'main' of https://github.com/yuvraj2011/docsbot-chat-widget
yuvraj-singh-codes Sep 18, 2023
7cf0147
Merge branch 'main' of https://github.com/yuvraj2011/docsbot-chat-widget
yuvraj-singh-codes Oct 9, 2023
72c1b74
Merge branch 'main' of https://github.com/yuvraj2011/docsbot-chat-widget
yuvraj-singh-codes Oct 11, 2023
0a778aa
use of reset lable
yuvraj-singh-codes Oct 11, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/chatbot/Chatbot.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,7 @@ export const Chatbot = ({ isOpen, setIsOpen, isEmbeddedBox }) => {
<div style={{ width: "100%" }}>
<button
onClick={() => setRefreshChat(!refreshChat)}
title="Reset conversation"
title={labels?.resetChat}
style={(isEmbeddedBox && hideHeader) ? { top: "2px" } : { top: "5px" }}
>
<FontAwesomeIcon icon={faRefresh} />
Expand Down