[PR #638] [CLOSED] fix: better UI for long members list #1054

Closed
opened 2026-02-04 21:46:45 +03:00 by OVERLORD · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/plankanban/planka/pull/638
Author: @keppy
Created: 3/20/2024
Status: Closed

Base: masterHead: fix-long-members-list


📝 Commits (4)

  • 41a2577 fix: #617 members list display logic for boards with more than 5 members
  • a36c248 fix: hide the indicator for more remaining members when there are zero
  • 532927a fix: checkpoint for work related to the fix-long-memberts-list feature
  • 56e746e Merge remote-tracking branch 'fork/master' into fix-long-members-list

📊 Changes

12 files changed (+523 additions, -10 deletions)

View changed files

client/src/components/Memberships/EditStep/EditStep.jsx (+164 -0)
client/src/components/Memberships/EditStep/EditStep.module.scss (+21 -0)
client/src/components/Memberships/EditStep/UserItem.jsx (+31 -0)
client/src/components/Memberships/EditStep/UserItem.module.scss (+47 -0)
client/src/components/Memberships/EditStep/index.js (+3 -0)
📝 client/src/components/Memberships/Memberships.jsx (+25 -1)
📝 client/src/components/Memberships/Memberships.module.scss (+8 -1)
📝 client/src/components/ProjectSettingsModal/ManagersPane.jsx (+1 -0)
📝 client/src/locales/en/core.js (+2 -0)
📝 docker-compose-db.yml (+1 -1)
📝 package-lock.json (+218 -6)
📝 package.json (+2 -1)

📄 Description

An initial stab at #617, making the member list useful even when there are many members.

Screenshot 2024-03-19 at 2 13 22 PM Screenshot 2024-03-19 at 2 24 46 PM Screenshot 2024-03-19 at 2 25 03 PM

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/plankanban/planka/pull/638 **Author:** [@keppy](https://github.com/keppy) **Created:** 3/20/2024 **Status:** ❌ Closed **Base:** `master` ← **Head:** `fix-long-members-list` --- ### 📝 Commits (4) - [`41a2577`](https://github.com/plankanban/planka/commit/41a2577696b06f2fb03bf15fb28e524ca0748ca1) fix: #617 members list display logic for boards with more than 5 members - [`a36c248`](https://github.com/plankanban/planka/commit/a36c248a3ba6caef04bc4d4809e24d3e6e433842) fix: hide the indicator for more remaining members when there are zero - [`532927a`](https://github.com/plankanban/planka/commit/532927a84fc2805ea27fe8ad15ec5fb2bc809125) fix: checkpoint for work related to the fix-long-memberts-list feature - [`56e746e`](https://github.com/plankanban/planka/commit/56e746eaf6d553686f00b52065936b8633b23083) Merge remote-tracking branch 'fork/master' into fix-long-members-list ### 📊 Changes **12 files changed** (+523 additions, -10 deletions) <details> <summary>View changed files</summary> ➕ `client/src/components/Memberships/EditStep/EditStep.jsx` (+164 -0) ➕ `client/src/components/Memberships/EditStep/EditStep.module.scss` (+21 -0) ➕ `client/src/components/Memberships/EditStep/UserItem.jsx` (+31 -0) ➕ `client/src/components/Memberships/EditStep/UserItem.module.scss` (+47 -0) ➕ `client/src/components/Memberships/EditStep/index.js` (+3 -0) 📝 `client/src/components/Memberships/Memberships.jsx` (+25 -1) 📝 `client/src/components/Memberships/Memberships.module.scss` (+8 -1) 📝 `client/src/components/ProjectSettingsModal/ManagersPane.jsx` (+1 -0) 📝 `client/src/locales/en/core.js` (+2 -0) 📝 `docker-compose-db.yml` (+1 -1) 📝 `package-lock.json` (+218 -6) 📝 `package.json` (+2 -1) </details> ### 📄 Description An initial stab at #617, making the member list useful even when there are many members. <img width="1720" alt="Screenshot 2024-03-19 at 2 13 22 PM" src="https://github.com/plankanban/planka/assets/1513098/0d6b628c-ec18-49a8-a777-1813af89aa3c"> <img width="1724" alt="Screenshot 2024-03-19 at 2 24 46 PM" src="https://github.com/plankanban/planka/assets/1513098/a7497f4e-7e6d-481f-af6a-f202a89a8dc8"> <img width="1722" alt="Screenshot 2024-03-19 at 2 25 03 PM" src="https://github.com/plankanban/planka/assets/1513098/ce35605b-0605-498a-8652-a3478cb2e513"> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
OVERLORD added the pull-request label 2026-02-04 21:46:45 +03:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/planka#1054