From f8bc56bfdcebdbb113b9b71f1a60b01973eb151a Mon Sep 17 00:00:00 2001 From: Harshil Sharma <18575143+harshilsharma63@users.noreply.github.com> Date: Fri, 16 Dec 2022 21:15:45 +0530 Subject: [PATCH] Fixed flex-wrap to display all emojis (#4355) * Fixed flex-wrap to display all emojis * Lint fix --- mattermost-plugin/server/manifest.go | 3 +-- webapp/src/styles/main.scss | 5 +++++ 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/mattermost-plugin/server/manifest.go b/mattermost-plugin/server/manifest.go index 980106ddb..27798a86a 100644 --- a/mattermost-plugin/server/manifest.go +++ b/mattermost-plugin/server/manifest.go @@ -45,8 +45,7 @@ const manifestStr = ` "type": "bool", "help_text": "This allows board editors to share boards that can be accessed by anyone with the link.", "placeholder": "", - "default": false, - "hosting": "" + "default": false } ] } diff --git a/webapp/src/styles/main.scss b/webapp/src/styles/main.scss index 1288338cf..ff34458da 100644 --- a/webapp/src/styles/main.scss +++ b/webapp/src/styles/main.scss @@ -237,4 +237,9 @@ html { width: 48px; } } + + .emoji-mart-category-list { + display: flex; + flex-wrap: wrap; + } }