[PR #1305] [MERGED] Dashboard/pre-v2 fixes #1252

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

📋 Pull Request Information

Original PR: https://github.com/BoostIO/BoostNote-App/pull/1305
Author: @Davy-c
Created: 11/8/2021
Status: Merged
Merged: 11/8/2021
Merged by: @Davy-c

Base: dashboard/newHead: dashboard/v2-fixes


📝 Commits (10+)

  • 2cc771c remove beta program reference
  • a12b3d7 doc page header layout changes
  • b9ccc44 add icons to doc page header
  • 9c04590 change hide and show properties icons
  • 17d03e0 prop selector ordering removal
  • 957da00 remove type rule select from first dashboard condition
  • cf85c8d fix condition layout, trashcan to the right
  • 9da3690 fix ordering in dashboard filter
  • e1e2892 remove multi view table allowed
  • d554533 add placeholders

📊 Changes

25 files changed (+346 additions, -434 deletions)

View changed files

📝 src/cloud/components/Application.tsx (+0 -2)
📝 src/cloud/components/ContentManager/ContentManagerToolbar.tsx (+2 -1)
📝 src/cloud/components/DashboardFolderContextMenu.tsx (+1 -149)
📝 src/cloud/components/DashboardPage/index.tsx (+2 -2)
📝 src/cloud/components/DocPage/DocPageHeader.tsx (+48 -22)
📝 src/cloud/components/Modal/contents/Dashboard/ConditionItem.tsx (+71 -49)
📝 src/cloud/components/Modal/contents/Dashboard/ConditionValueControl.tsx (+3 -0)
📝 src/cloud/components/Modal/contents/Dashboard/CreateDashboardModal.tsx (+16 -16)
📝 src/cloud/components/Modal/contents/Dashboard/DashboardConditionRows.tsx (+1 -0)
📝 src/cloud/components/Modal/contents/Dashboard/DashboardForm.tsx (+48 -38)
📝 src/cloud/components/Modal/contents/Dashboard/UpdateDashboardModal.tsx (+3 -0)
📝 src/cloud/components/Props/PropPicker.tsx (+10 -5)
📝 src/cloud/components/Props/PropSelectorModal.tsx (+5 -11)
src/cloud/components/Views/Table/TableFilterContext.tsx (+0 -49)
📝 src/cloud/components/Views/Table/TablePropertiesContext.tsx (+1 -9)
📝 src/cloud/components/Views/Table/TableView.tsx (+3 -25)
📝 src/cloud/components/Views/ViewsSelector.tsx (+15 -13)
📝 src/cloud/components/Views/index.tsx (+33 -1)
📝 src/cloud/components/settings/SettingsComponent.tsx (+0 -6)
📝 src/cloud/interfaces/db/props.ts (+13 -9)

...and 5 more files

📄 Description

No description provided


🔄 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/1305 **Author:** [@Davy-c](https://github.com/Davy-c) **Created:** 11/8/2021 **Status:** ✅ Merged **Merged:** 11/8/2021 **Merged by:** [@Davy-c](https://github.com/Davy-c) **Base:** `dashboard/new` ← **Head:** `dashboard/v2-fixes` --- ### 📝 Commits (10+) - [`2cc771c`](https://github.com/BoostIO/BoostNote-App/commit/2cc771c4e95b49a74d188b101068732efcbf3406) remove beta program reference - [`a12b3d7`](https://github.com/BoostIO/BoostNote-App/commit/a12b3d758476e346e57c7fba92ef72753e587d6a) doc page header layout changes - [`b9ccc44`](https://github.com/BoostIO/BoostNote-App/commit/b9ccc44b2d40bc4a7c1f244c1c32702d68a5466a) add icons to doc page header - [`9c04590`](https://github.com/BoostIO/BoostNote-App/commit/9c04590ba9d484ce350d6135fef638dfec9c3741) change hide and show properties icons - [`17d03e0`](https://github.com/BoostIO/BoostNote-App/commit/17d03e0006ad2a80a230eb23c396e50442453e02) prop selector ordering removal - [`957da00`](https://github.com/BoostIO/BoostNote-App/commit/957da00f0506c723bcea7125f31f79c997a7daba) remove type rule select from first dashboard condition - [`cf85c8d`](https://github.com/BoostIO/BoostNote-App/commit/cf85c8d24cb596448233e1ba1ffd1142deb8f709) fix condition layout, trashcan to the right - [`9da3690`](https://github.com/BoostIO/BoostNote-App/commit/9da3690c9a572b421fd361f189dc96a9967448d4) fix ordering in dashboard filter - [`e1e2892`](https://github.com/BoostIO/BoostNote-App/commit/e1e289253b98a1b1e33a015abd62a4787e3dea27) remove multi view table allowed - [`d554533`](https://github.com/BoostIO/BoostNote-App/commit/d5545331752c68cc6358e9ea6be0d4dba4ba1af0) add placeholders ### 📊 Changes **25 files changed** (+346 additions, -434 deletions) <details> <summary>View changed files</summary> 📝 `src/cloud/components/Application.tsx` (+0 -2) 📝 `src/cloud/components/ContentManager/ContentManagerToolbar.tsx` (+2 -1) 📝 `src/cloud/components/DashboardFolderContextMenu.tsx` (+1 -149) 📝 `src/cloud/components/DashboardPage/index.tsx` (+2 -2) 📝 `src/cloud/components/DocPage/DocPageHeader.tsx` (+48 -22) 📝 `src/cloud/components/Modal/contents/Dashboard/ConditionItem.tsx` (+71 -49) 📝 `src/cloud/components/Modal/contents/Dashboard/ConditionValueControl.tsx` (+3 -0) 📝 `src/cloud/components/Modal/contents/Dashboard/CreateDashboardModal.tsx` (+16 -16) 📝 `src/cloud/components/Modal/contents/Dashboard/DashboardConditionRows.tsx` (+1 -0) 📝 `src/cloud/components/Modal/contents/Dashboard/DashboardForm.tsx` (+48 -38) 📝 `src/cloud/components/Modal/contents/Dashboard/UpdateDashboardModal.tsx` (+3 -0) 📝 `src/cloud/components/Props/PropPicker.tsx` (+10 -5) 📝 `src/cloud/components/Props/PropSelectorModal.tsx` (+5 -11) ➖ `src/cloud/components/Views/Table/TableFilterContext.tsx` (+0 -49) 📝 `src/cloud/components/Views/Table/TablePropertiesContext.tsx` (+1 -9) 📝 `src/cloud/components/Views/Table/TableView.tsx` (+3 -25) 📝 `src/cloud/components/Views/ViewsSelector.tsx` (+15 -13) 📝 `src/cloud/components/Views/index.tsx` (+33 -1) 📝 `src/cloud/components/settings/SettingsComponent.tsx` (+0 -6) 📝 `src/cloud/interfaces/db/props.ts` (+13 -9) _...and 5 more files_ </details> ### 📄 Description _No description provided_ --- <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:19 +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#1252
No description provided.