mirror of
https://github.com/zulip/zulip.git
synced 2025-11-04 22:13:26 +00:00
streams-settings: Fix toggle icon not updating.
This commit fixes a regression which was introduced while we were removing icon-vector and replacing the same with font-awesome. We forgot to update the toggle icons from the JS file.
This commit is contained in:
@@ -328,7 +328,7 @@ exports.create_handlers_for_users = function (container) {
|
||||
|
||||
container.on('click', '#copy-from-stream-expand-collapse', function (e) {
|
||||
$('#stream-checkboxes').toggle();
|
||||
$("#copy-from-stream-expand-collapse .toggle").toggleClass('icon-vector-caret-right icon-vector-caret-down');
|
||||
$("#copy-from-stream-expand-collapse .toggle").toggleClass('fa-caret-right fa-caret-down');
|
||||
e.preventDefault();
|
||||
update_announce_stream_state();
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user