Skip to content

Commit

Permalink
Add Jacie Chatbot link to RightMenu component
Browse files Browse the repository at this point in the history
The Jacie Chatbot link is added to the RightMenu component when the user
is not anonymous. This allows users to easily access the chatbot for
assistance. This change enhances user experience and provides a
convenient way to interact with the chatbot support system.

Issue apache#1234
  • Loading branch information
romaine-murray committed Nov 26, 2023
1 parent a4faac6 commit db75033
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions superset-frontend/src/views/components/RightMenu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -371,6 +371,23 @@ const RightMenu = ({
onOpenChange={onMenuOpen}
>
{RightMenuExtension && <RightMenuExtension />}
{!navbarRight.user_is_anonymous && (
<StyledAnchor
href="https://jse.aeontsolutions.com"
target="_blank"
title={t('Jacie Chatbot')}
>
<span
style={{
marginLeft: '10px',
marginRight: '3px',
}}
>
Jacie Chatbot
</span>
<i className="fa fa-external-link" />
</StyledAnchor>
)}
{!navbarRight.user_is_anonymous && showActionDropdown && (
<SubMenu
data-test="new-dropdown"
Expand Down

0 comments on commit db75033

Please sign in to comment.