- 06 Feb, 2018 18 commits
-
-
Saturnino Abril authored
* filter out teams that are deleted and without display_name, then sort by their `display_name` field * handle `delete_team` websocket event * eliminate usage of TeamStore
-
Saturnino Abril authored
* fix download tooltip * change text to `Download` only and change tooltip position closer to download icon * fix conflicts * removed unnecessary props and add constant for max filename length
-
Harrison Healey authored
* ICU-703 Don't show close button for unread channels * Updated unit tests
-
Joram Wilander authored
* Prevent posting in town-square when set to read only * Updating placeholder text * Fix merge * Fix textbox height on mobile
-
enahum authored
-
Asaad Mahmood authored
* ICU-704 - Space between label and value version * ICU-700 - Thumbnail css improvements * update test and snapshot * Fixing image distortion issue
-
Christopher Speller authored
-
Jesse Hallam authored
* ABC-216: fix tutorial progression This change fixes a `===` comparison between a string an integer to allow the second tutorial step to display. It also fixes the trigger that increments the tutorial step to only fire on an explicit "next" instead of twice on a click because of multiple registered event handlers. This also means that the tutorial no longer advances on an "escape", but requires being explicitly skipped or completed. As part of the clean up, unify most handling of the tutorial step preference constants. * ABC-234: fix clicking on tutorial circles The circles were effectively setting a screen state of `"1"` instead of the expected `1`. * ABC-216: switch to arrow functions
-
Harrison Healey authored
-
Christopher Speller authored
-
Jonathan authored
* Removed redirect when team settings are updated * Removed unused import
-
Jonathan authored
* Re-evaluate character count on focus event * make check-style * Moved Utils.generateRandomString(...) into TestHelper.randomString(...)
-
Saturnino Abril authored
-
Jesse Hallam authored
This simplifies the changes introduced in ABC-160 to simply check that the channel exists instead of also checking that the channel team id matches the current team. The additional check was redundant, since the set of channels available are already constrained to the current team; it was also wrong, since direct messages and group messages aren't actually assigned team ids, leading to the regression in question. Note that this check (before and even now) only works if you have access to the two teams in question. If you try to open a malformed permalink referencing a team for which you don't have access or that doesn't exist, none of the router code in <NeedsTeam> executes (team is null), and a different path is executed that doesn't try to evaluate the permalink. Fixing that appears to be non-trivial and out of scope for this change.
-
Harrison Healey authored
-
Jesse Hallam authored
The changes in PLT-8478 subtly changed the `id` of the AutosizeTextarea from `post_textbox` to `post_textbox-textarea`. Unfortunately, the former is hard-coded in a variety of places that trigger the desired focus behaviour. Ideally, this would be abstracted (as commented in the code), but for now the minor portion of this change is reverted with no observable side effects.
-
Sudheer authored
* Add loader to more direct channels modal l * Add loader for channel_invite_modal and add_users_to_team modal * Fix loader for search in all multiselect modals * Update tests
-
Asaad Mahmood authored
* ICU-697 - Reply arrow overlaps autocomplete fix * ICU-696 - Can’t scroll help page fix * ICU-694 - Edit indicator moving to another line fix * ICU-651 - Fixing wordbreak issue in tooltip * PLT-8506 - Pointer appearing on help text fix * PLT-8469 - Pressing enter on delete modal fix * updated tests and snapshot * update snapshot
-
- 05 Feb, 2018 15 commits
-
-
Joram Wilander authored
-
Harrison Healey authored
* ICU-687/ICU-688/ICU-689/ICU-690 Fixed channels staying in the UNREADS section after viewing * Updates snapshots * Removed unused redux actions * Reverted return statement for empty SidebarChannel
-
amyblais authored
* Update NOTICE.txt * Update NOTICE.txt
-
Harrison Healey authored
* ICU-692 Fixed alt+shift+arrow hotkey * ICU-692 Added unit tests
-
Joram Wilander authored
-
Saturnino Abril authored
-
Saturnino Abril authored
-
Saturnino Abril authored
-
Stephen Kiers authored
* removed check that was prevent submit if names were unchanged * fix es-lint issue * harrison’s suggestions * style fix
-
Harrison Healey authored
* ICU-686 Fixed channels ignoring mark unread setting * Updated snapshots * Fixed channel leave/close styling in sidebar * Updated snapshots again
-
Harrison Healey authored
* ICU-656 Used markdown renderer when searching for at channel in large channels * ICU-656 Added additional padding and test cases
-
Joram Wilander authored
* Add server request to emoji autocomplete * Point at temporary redux commit and minor fix
-
Saturnino Abril authored
reset error for new channel creation when switching channel from private to public and vice versa (#697)
-
Joram Wilander authored
-
Stephen Kiers authored
-
- 03 Feb, 2018 1 commit
-
-
Harrison Healey authored
* PLT-8684 Fixed DM links in channel sidebar * Updated snapshots
-
- 02 Feb, 2018 6 commits
-
-
Harrison Healey authored
* Used a fragment to reduce code duplication in sidebar * Updating snapshots
-
Joram Wilander authored
* Temporary redux commit * Add async custom emoji loading to channel header * Handle emojis in login page banner text * Update mattermost-redux * Fix accidental removal
-
Stephen Kiers authored
* Fix ModalListener ‘memory leak’ issue * switched to arrow functions * matched removes to adds * remove unused func
-
Jesse Hallam authored
* ABC-178: polyfill URLSearchParams IE11 and the current Edge don't support URLSearchParams, newly introduced as part of the react-router upgrades. This completely prevents Mattermost from working. The newest Edge in preview does support URLSearchParams and renders without issue. * ABC-178: use exact version
-
Joram Wilander authored
* Add paging and server search for custom emojis to emoji picker * Don't try to load custom emojis when disabled * Updates per feedback * Update mattermost-redux
-
Hyeseong Kim authored
* Change the message identifier rules Worked on team routes. - Channel Route: /channels/{channel_name} - GM Route: /messages/{group_id} - DM Route: /messages/@{username} - Fail Route: /channels/{default_channel_name} Worked on redirection rules. - /channels/{channel_id} -> Channel Route - /channels/{id1}__{id2} -> DM Route - /messages/{user_id} -> DM Route - /messages/{user_email} -> DM Route - /channels/{group_id} -> GM Route - Any other routes -> Fail Route (Let me know if needs more handling) * Fix the problem on switching to group channel & Remove all useless await * Change the direct channel url of sidebar * Change the direct channel url of profile popover * Change message identifier router to pure component * Change the url of direct channel immediately when the username is changed * Set the testURL to http://localhost:8065 to pass the test. snapshots updated * Change the constants style to CAPITAL_SNAKE_CASE * Fix a bug that URL is changed with unexpected context * Rename MessageIdentifierRouter -> ChannelIdentifierRouter
-