-
Notifications
You must be signed in to change notification settings - Fork 1.6k
https://github.com/DevDodge/dkoctobot #341
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
Open
DevDodge
wants to merge
14
commits into
FlowiseAI:main
Choose a base branch
from
DevDodge:main
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 2 commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
2945f2b
update powered by octobot
Modernaccademy 0dc85f0
building web.js
Modernaccademy 9437222
Fix exports
DevDodge 5a26203
Rebuild with DK-OctoBot branding
DevDodge 572ccb0
Expose dist folder in exports
DevDodge 01b4a47
Add gradient support, RTL, and whatsapp-style bubbles
DevDodge 6be5a3a
Fix background gradient style
DevDodge 599ebe6
Add modern redesign with tails, typewriter and animated bg
DevDodge 404dc1e
Update Bot with typewriter, badge and animation logic
DevDodge f03126c
Rebrand to octobot-embed-chat v1.0.0
DevDodge 75d7e28
Rename to octobot-fullchatbot
DevDodge 54c81c8
Fix element names in window.ts
DevDodge 2c248a8
fix: rename web component from flowise-* to octobot-* for proper regi…
DevDodge 731231a
feat: add typing effect for Arabic placeholder with Octobot color #90…
DevDodge File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -51,14 +51,14 @@ export const Badge = (props: Props) => { | |
| {props.footer?.text ?? 'Powered by'} | ||
| <a | ||
| ref={liteBadge} | ||
| href={props.footer?.companyLink ?? 'https://flowiseai.com'} | ||
| href={props.footer?.companyLink ?? 'https://octobot.it.com'} | ||
| target="_blank" | ||
| rel="noopener noreferrer" | ||
| class="lite-badge" | ||
| id="lite-badge" | ||
| style={{ 'font-weight': 'bold', color: props.footer?.textColor ?? props.poweredByTextColor ?? defaultTextColor }} | ||
| > | ||
| <span> {props.footer?.company ?? 'Flowise'}</span> | ||
| <span> {props.footer?.company ?? 'DK-OctoBot'}</span> | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
| </a> | ||
| </span> | ||
| </Show> | ||
|
|
||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For improved maintainability, it is best practice to declare hardcoded string literals, such as this default URL, as constants at the top of the file. For example:
const DEFAULT_COMPANY_LINK = 'https://octobot.it.com';. This centralizes configuration and makes future updates easier.