-
Notifications
You must be signed in to change notification settings - Fork 16
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
fix(volume): bind output slider volume to stream volume #3453
Conversation
✅ Yeeeehaw, deploy preview is ready!
To edit notification comments on pull requests, go to your Netlify site settings. |
@@ -22,7 +22,7 @@ export default Vue.extend({ | |||
*/ | |||
methods: { | |||
checkUsersTyping() { | |||
if (this.users.length <= 3 && this.users.length != 0) { | |||
if (this.users.length <= 3 && this.users.length !== 0) { |
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.
Can be refactored to if (this.users.length <= 3 && this.users.length)
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.
good callout
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.
Hey Muhammad! Thanks for the first PR :) just a couple of minors and the rest looks good!
Oh also in the section |
Hogan has a couple changes to request on these code changes. |
i dunno what i was thinking on that call earlier. When i skimmed it i thought this was doing something else. Good job, Muhammad! |
What this PR does 📖
Which issue(s) this PR fixes 🔨
AP-352
Additional comments 🎤