[PR #1394] [MERGED] Docopsv3/kanban fixes #1317

Closed
opened 2026-03-03 00:25:37 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/BoostIO/BoostNote-App/pull/1394
Author: @Davy-c
Created: 12/9/2021
Status: Merged
Merged: 12/9/2021
Merged by: @Davy-c

Base: docops-v3Head: docopsv3/kanban-fixes


📝 Commits (10+)

  • 59b9fce fix calendar item overflow
  • 6a424f2 remove unused item
  • 5bb2b93 fix alignment of view selector in kanban view
  • c46d02e remove extra css on nav items of kanban
  • e488702 rename delete to hide
  • 602d0b0 fix keynav of status selector
  • 011eb8c fix add btn style
  • a2d9745 remove box shadow in view selector
  • 5543c7b fix keynav in suggestion select
  • 686f7bb fix icon in suggestion select

📊 Changes

17 files changed (+312 additions, -101 deletions)

View changed files

📝 src/cloud/components/Props/Pickers/StatusSelect.tsx (+11 -2)
📝 src/cloud/components/Props/PropAddModal.tsx (+7 -1)
📝 src/cloud/components/Views/Calendar/CalendarView.tsx (+1 -7)
📝 src/cloud/components/Views/FolderList/ViewsFolderList.tsx (+1 -1)
📝 src/cloud/components/Views/Kanban/Item.tsx (+12 -15)
📝 src/cloud/components/Views/Kanban/KanbanWatchedPropSetter.tsx (+128 -23)
📝 src/cloud/components/Views/Kanban/ListSettings.tsx (+3 -3)
📝 src/cloud/components/Views/Kanban/index.tsx (+100 -27)
📝 src/cloud/components/Views/Table/ColSettingsContext.tsx (+3 -3)
📝 src/cloud/components/Views/Table/TablePropertiesContext.tsx (+2 -2)
📝 src/cloud/components/Views/Table/TableView.tsx (+1 -1)
📝 src/cloud/components/Views/ViewsSelector.tsx (+10 -1)
📝 src/cloud/components/Views/index.tsx (+7 -1)
📝 src/cloud/lib/views/kanban.ts (+8 -1)
📝 src/design/components/molecules/LabelManager.tsx (+14 -2)
📝 src/design/components/molecules/SuggestionSelect.tsx (+2 -1)
📝 src/design/components/organisms/Kanban/Container.tsx (+2 -10)

📄 Description

Changes

  • Add temporary add button after lists ( creation UI to change )
  • change drag event to be on the whole header for kanban header
  • unify calendar and kanban watched prop ( to be refactored in a following PR- saturday/monday)

Bug fixes

  • fix lexorank bug for default status list
  • fix keynav and icons of suggestionSelect
  • hide statuses already present in kanban lists from within statusselector
  • fix Status selector keynav and style

Style

  • Use navigation item in Kanban item + fix overflow
  • remove unused button
  • remove border for new folder item in view manager
  • Change background of calendar buttons
  • label of viewSelector add button
  • renamed some elements

🔄 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/BoostIO/BoostNote-App/pull/1394 **Author:** [@Davy-c](https://github.com/Davy-c) **Created:** 12/9/2021 **Status:** ✅ Merged **Merged:** 12/9/2021 **Merged by:** [@Davy-c](https://github.com/Davy-c) **Base:** `docops-v3` ← **Head:** `docopsv3/kanban-fixes` --- ### 📝 Commits (10+) - [`59b9fce`](https://github.com/BoostIO/BoostNote-App/commit/59b9fce04461f0c8dd53830e602fcbf208da4dbb) fix calendar item overflow - [`6a424f2`](https://github.com/BoostIO/BoostNote-App/commit/6a424f2de486df1ef6488690ab96b1f43c00874a) remove unused item - [`5bb2b93`](https://github.com/BoostIO/BoostNote-App/commit/5bb2b93d793a8b9a84b161f9a7fb9521e07128a3) fix alignment of view selector in kanban view - [`c46d02e`](https://github.com/BoostIO/BoostNote-App/commit/c46d02ee05e19044f47e80a0c924f8218db59bff) remove extra css on nav items of kanban - [`e488702`](https://github.com/BoostIO/BoostNote-App/commit/e48870296ea9ba9ec41e87c68e67d769d5b50bdb) rename delete to hide - [`602d0b0`](https://github.com/BoostIO/BoostNote-App/commit/602d0b044e817e96c71819abe2c52ab3886a0cd4) fix keynav of status selector - [`011eb8c`](https://github.com/BoostIO/BoostNote-App/commit/011eb8cf93517e53279b76d145e6c7612c629213) fix add btn style - [`a2d9745`](https://github.com/BoostIO/BoostNote-App/commit/a2d97454e60f48c66b8f4abf8c737446ab724809) remove box shadow in view selector - [`5543c7b`](https://github.com/BoostIO/BoostNote-App/commit/5543c7b61e35311a7d65020817e6f5bdbd6f8ec0) fix keynav in suggestion select - [`686f7bb`](https://github.com/BoostIO/BoostNote-App/commit/686f7bbbf56878c2b0062ec3a7ce640d25152856) fix icon in suggestion select ### 📊 Changes **17 files changed** (+312 additions, -101 deletions) <details> <summary>View changed files</summary> 📝 `src/cloud/components/Props/Pickers/StatusSelect.tsx` (+11 -2) 📝 `src/cloud/components/Props/PropAddModal.tsx` (+7 -1) 📝 `src/cloud/components/Views/Calendar/CalendarView.tsx` (+1 -7) 📝 `src/cloud/components/Views/FolderList/ViewsFolderList.tsx` (+1 -1) 📝 `src/cloud/components/Views/Kanban/Item.tsx` (+12 -15) 📝 `src/cloud/components/Views/Kanban/KanbanWatchedPropSetter.tsx` (+128 -23) 📝 `src/cloud/components/Views/Kanban/ListSettings.tsx` (+3 -3) 📝 `src/cloud/components/Views/Kanban/index.tsx` (+100 -27) 📝 `src/cloud/components/Views/Table/ColSettingsContext.tsx` (+3 -3) 📝 `src/cloud/components/Views/Table/TablePropertiesContext.tsx` (+2 -2) 📝 `src/cloud/components/Views/Table/TableView.tsx` (+1 -1) 📝 `src/cloud/components/Views/ViewsSelector.tsx` (+10 -1) 📝 `src/cloud/components/Views/index.tsx` (+7 -1) 📝 `src/cloud/lib/views/kanban.ts` (+8 -1) 📝 `src/design/components/molecules/LabelManager.tsx` (+14 -2) 📝 `src/design/components/molecules/SuggestionSelect.tsx` (+2 -1) 📝 `src/design/components/organisms/Kanban/Container.tsx` (+2 -10) </details> ### 📄 Description ### Changes - Add temporary add button after lists ( creation UI to change ) - change drag event to be on the whole header for kanban header - unify calendar and kanban watched prop ( to be refactored in a following PR- saturday/monday) ### Bug fixes - fix lexorank bug for default status list - fix keynav and icons of suggestionSelect - hide statuses already present in kanban lists from within statusselector - fix Status selector keynav and style ### Style - Use navigation item in Kanban item + fix overflow - remove unused button - remove border for new folder item in view manager - Change background of calendar buttons - label of viewSelector add button - renamed some elements --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-03 00:25:37 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/BoostNote-App#1317
No description provided.