diff --git a/README.md b/README.md index e4c5e975b..75bb6d4ec 100644 --- a/README.md +++ b/README.md @@ -85,6 +85,10 @@ This will run a demo version, which you can turn into a fully licenced version b ## Versions History +### Version 4.18.1 (hotfix) + +- Reinstates the Enter icon on board input on mobiles (👏 Thanks to Hans K. for the idea) + ### Version 4.18.0 - Self-Hosted: Adding the ability to merge users (migrating their data into another user). This is only available for self-hosted instances, through the Administration panel (👏 Thanks to Frank Becker for the idea) diff --git a/backend/package.json b/backend/package.json index e78397cc6..0b341f1c2 100644 --- a/backend/package.json +++ b/backend/package.json @@ -1,6 +1,6 @@ { "name": "@retrospected/backend", - "version": "4.18.0", + "version": "4.18.1", "license": "GNU GPLv3", "private": true, "type": "module", diff --git a/docs/package.json b/docs/package.json index 2753e0724..e94e18d3b 100644 --- a/docs/package.json +++ b/docs/package.json @@ -1,6 +1,6 @@ { "name": "docs", - "version": "4.18.0", + "version": "4.18.1", "private": true, "scripts": { "docusaurus": "docusaurus", diff --git a/frontend/package.json b/frontend/package.json index e03797741..9bb3a78eb 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "@retrospected/frontend", - "version": "4.18.0", + "version": "4.18.1", "license": "GNU GPLv3", "private": true, "dependencies": { diff --git a/frontend/src/views/game/board/Column.tsx b/frontend/src/views/game/board/Column.tsx index daea7d901..b85dc3264 100644 --- a/frontend/src/views/game/board/Column.tsx +++ b/frontend/src/views/game/board/Column.tsx @@ -279,11 +279,6 @@ const EnterIcon = styled.div` color: ${colors.deepPurple[500]}; } } - - @media (max-width: 600px) { - display: none; - visibility: hidden; - } `; const IconContainer = styled.div` diff --git a/integration/package.json b/integration/package.json index 92f17fca7..141a36d6b 100644 --- a/integration/package.json +++ b/integration/package.json @@ -1,6 +1,6 @@ { "name": "retro-board-integration", - "version": "4.18.0", + "version": "4.18.1", "description": "Integrations tests", "main": "index.js", "directories": { diff --git a/package.json b/package.json index 4ba097cf9..6b9c217fa 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "retrospected", - "version": "4.18.0", + "version": "4.18.1", "description": "An agile retrospective board - Powering www.retrospected.com", "private": true, "scripts": {