-
Notifications
You must be signed in to change notification settings - Fork 5
fix(VLE): Show notes launcher and chatbot toggle in tabbed mode #2258
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
Conversation
❌ 1 blocking issue (1 total)
|
| it('should create', () => { | ||
| expect(component).toBeTruthy(); | ||
| }); | ||
| }); |
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.
|
Coverage Impact Unable to calculate total coverage change because base branch coverage was not found. Modified Files with Diff Coverage (2)
🤖 Increase coverage with AI coding...🚦 See full report on Qlty Cloud » 🛟 Help
|
hirokiterashima
left a comment
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.
| @@ -0,0 +1,22 @@ | |||
| import { ComponentFixture, TestBed } from '@angular/core/testing'; | |||
|
|
|||
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.
| selector: 'chatbot-launcher', | ||
| imports: [MatButtonModule, MatIconModule, MatTooltipModule], | ||
| templateUrl: './chatbot-launcher.component.html', | ||
| styleUrl: './chatbot-launcher.component.scss' |
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.
Remove line and empty file?
| export class ChatbotLauncherComponent { | ||
| @Output() toggleChatbot = new EventEmitter<void>(); | ||
|
|
||
| emitToggleChatbot(): void { |
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.
| emitToggleChatbot(): void { | |
| protected emitToggleChatbot(): void { |
hirokiterashima
left a comment
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.
Discussed in person. Good to merge after changes. 👍
|
🎉 This PR is included in version 5.203.2 🎉 The release is available on GitHub release Your semantic-release bot 📦🚀 |


Changes
Notes launcher and Chatbot toggle buttons were previously not show when unit uses the Tabbed navigation mode (making the tools inaccessible :

These changes show the Notes launcher and Chatbot toggle buttons next to the navigation tabs:

Test