-
Notifications
You must be signed in to change notification settings - Fork 42
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
Bugfix: Chat launcher icon added nav bar, previous launch button hidden #1287
Conversation
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.
A couple of small comments @space-age-pete
@@ -108,6 +110,8 @@ export default { | |||
|
|||
<HelpMenu /> | |||
|
|||
<ChatLauncher /> |
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.
<ChatLauncher /> | |
<ChatLauncher v-if="isCloud" /> |
This should only be on the nav bar if we're in a Cloud context.
src/plugins/salesforceChat.js
Outdated
@@ -15,7 +15,7 @@ export const initializeSalesforceChat = () => { | |||
const license = store.getters['license/license'] | |||
|
|||
const initESW = function(gslbBaseURL) { | |||
window.embedded_svc.settings.displayHelpButton = true // Or false | |||
window.embedded_svc.settings.displayHelpButton = false // Or false |
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.
window.embedded_svc.settings.displayHelpButton = false // Or false | |
window.embedded_svc.settings.displayHelpButton = false |
Probably no need for a comment here.
Just checking - Are all the font-awesome file changes necessary? |
@zhen0 - yeah those are necessary to add new icons to the project |
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.
LGTM @space-age-pete
Closes: #1287
Description
The chat feature will now be launched from an icon in the navbar rather than the floating button that has been blocking the run button
Tests and performance