diff --git a/client/routes/router.js b/client/routes/router.js
index b25056eaa50..beea6092bee 100644
--- a/client/routes/router.js
+++ b/client/routes/router.js
@@ -68,14 +68,6 @@ FlowRouter.route('/home', {
}
});
-// FlowRouter.route('/changeavatar', {
-// name: 'changeAvatar',
-//
-// action() {
-// BlazeLayout.render('main', {center: 'avatarPrompt'});
-// }
-// });
-
FlowRouter.route('/account/:group?', {
name: 'account',
diff --git a/packages/rocketchat-emoji/client/emojiPicker.css b/packages/rocketchat-emoji/client/emojiPicker.css
index 612a8f98c94..dbb0b95964d 100644
--- a/packages/rocketchat-emoji/client/emojiPicker.css
+++ b/packages/rocketchat-emoji/client/emojiPicker.css
@@ -102,8 +102,32 @@
align-items: center;
& .emoji-filter {
+ position: relative;
+
width: 90%;
margin-bottom: 0;
+
+ & .search {
+ position: relative;
+
+ width: 100%;
+ height: 35px;
+ padding: 2px 8px;
+
+ border-width: 1px;
+ border-style: solid;
+ border-radius: 5px;
+ outline: none;
+
+ line-height: normal;
+ appearance: none;
+ }
+
+ & .icon-search {
+ position: absolute;
+ top: 10px;
+ left: 7px;
+ }
}
& .change-tone {
diff --git a/packages/rocketchat-i18n/i18n/en.i18n.json b/packages/rocketchat-i18n/i18n/en.i18n.json
index b917458c1c9..a4a88674a23 100644
--- a/packages/rocketchat-i18n/i18n/en.i18n.json
+++ b/packages/rocketchat-i18n/i18n/en.i18n.json
@@ -256,6 +256,7 @@
"Away_male": "Away",
"Back": "Back",
"Back_to_applications": "Back to applications",
+ "Back_to_chat": "Back to chat",
"Back_to_integrations": "Back to integrations",
"Back_to_integration_detail": "Back to the integration detail",
"Back_to_login": "Back to login",
@@ -1380,6 +1381,8 @@
"Private_Groups": "Private Groups",
"Private_Groups_list": "List of Private Groups",
"Profile": "Profile",
+ "Profile_details": "Profile details",
+ "Profile_picture": "Profile picture",
"Profile_saved_successfully": "Profile saved successfully",
"Public": "Public",
"Public_Channel": "Public Channel",
diff --git a/packages/rocketchat-lib/client/MessageAction.js b/packages/rocketchat-lib/client/MessageAction.js
index 5db7fe9e8f2..dc4cb61f472 100644
--- a/packages/rocketchat-lib/client/MessageAction.js
+++ b/packages/rocketchat-lib/client/MessageAction.js
@@ -138,11 +138,6 @@ Meteor.startup(function() {
const message = $(e.currentTarget).closest('.message')[0];
chatMessages[Session.get('openedRoom')].edit(message);
RocketChat.MessageAction.hideDropDown();
- // const input = instance.find('.input-message');
- // Meteor.setTimeout(() => {
- // input.focus();
- // input.change();
- // }, 200);
},
validation(message) {
if (RocketChat.models.Subscriptions.findOne({
diff --git a/packages/rocketchat-lib/client/views/customFieldsForm.html b/packages/rocketchat-lib/client/views/customFieldsForm.html
index 20ee61b70e6..a1a5d2c9845 100644
--- a/packages/rocketchat-lib/client/views/customFieldsForm.html
+++ b/packages/rocketchat-lib/client/views/customFieldsForm.html
@@ -1,53 +1,55 @@
+{{#if customFields}}