-
Notifications
You must be signed in to change notification settings - Fork 13k
[FIX] Make canned responses popup dependent on Canned_responses_enabled setting #23804
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] Make canned responses popup dependent on Canned_responses_enabled setting #23804
Conversation
sampaiodiego
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.
you should be able to change addMessagePopup so it can be used inside reactive functions.
This was exactly what i was looking for, thanks man! |
| const nonReactiveGetFunc = function() { | ||
| return customMessagePopups.get(); | ||
| }; |
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.
since you named this function "nonReactive" why don't you make it non-reactive for real? 😬
| const nonReactiveGetFunc = function() { | |
| return customMessagePopups.get(); | |
| }; | |
| const nonReactiveGetFunc = () => Tracker.nonreactive(() => customMessagePopups.get()); |
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.
This is what I get for naming things like that lol (i'll do the change)
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.
Done!
ee/app/canned-responses/client/views/popup/addMessagePopupCannedResponse.js
Outdated
Show resolved
Hide resolved
ee/app/canned-responses/client/views/popup/addMessagePopupCannedResponse.js
Outdated
Show resolved
Hide resolved
…f github.com:RocketChat/Rocket.Chat into fix/make-canned-responses-popup-dependent-on-setting
cauefcr
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.
Looking good to me, approving.
…age-template-2 * 'develop' of github.com:RocketChat/Rocket.Chat: (81 commits) Language update from LingoHub 🤖 (#24268) Regression: Fix incompatibility of apps http requests (#24276) [IMPROVE] lib/Statistics improved and metrics collector (#24177) [FIX] Fixing the changing custom status behavior (#24218) Regression: Align Omni-Source icon sizes with designs (#24269) Regression: Fix Inactive Departments still visible on Livechat (#24267) [FIX] Solved Report Message Blank (#24262) [FIX] Errors on advanced sync prevent LDAP users from logging in (#23958) Chore: Convert model LoginServiceConfiguration to raw (#24187) [FIX] Make canned responses popup dependent on Canned_responses_enabled setting (#23804) [FIX] Wrong german translation for 2FA-Promt (#24126) Bump follow-redirects from 1.14.5 to 1.14.7 in /ee/server/services (#24182) Chore: Update pino and pino-pretty (#24242) [FIX] Avoid updating all rooms with visitor abandonment queries (#24252) Add: Alpine image as option for build (#12548) Fixed broken links in setup wizard (#24248) [FIX] Apps Contextual Bar not carrying title and room information (#24241) Chore: Bump fuselage hooks (#24233) Regression: Remove extra call to `useOutsideClick` hook not following the function signature (#24243) [FIX] Change canned response model index to match other definition (#24235) ...
Proposed changes (including videos or screenshots)
Issue(s)
Steps to test or reproduce
Further comments