[PR #129] [MERGED] fix: topic selector #51

Closed
opened 2025-12-29 18:28:01 +01:00 by adam · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/linsa-io/linsa/pull/129
Author: @Aslam97
Created: 9/3/2024
Status: Merged
Merged: 9/4/2024
Merged by: @Aslam97

Base: mainHead: fix/topic-selector


📝 Commits (10+)

  • 6cab914 feat: add jazz globa group cons
  • a62cb19 chore: remove topic selector atom
  • 1057089 chore: use jazz from constant
  • d1fa9b7 chore: remove delete model and add new topic selector
  • 637efa0 chore: use jazz group id form constant in search component
  • 1386f46 chore: use jazz group id form constant in public home route
  • bd9df84 fix: topic selector in link
  • 170a178 fix: topic section in detail topic
  • 6f201d3 chore: update la editor
  • d77ce50 chore: content header tweak class

📊 Changes

21 files changed (+573 additions, -437 deletions)

View changed files

📝 web/components/custom/content-header.tsx (+1 -3)
web/components/custom/delete-modal.tsx (+0 -37)
web/components/custom/topic-selector.tsx (+179 -0)
📝 web/components/la-editor/styles/index.css (+6 -140)
web/components/la-editor/styles/partials/code-highlight.css (+86 -0)
📝 web/components/la-editor/styles/partials/misc.css (+8 -0)
web/components/la-editor/styles/partials/prosemirror-base.css (+86 -0)
web/components/la-editor/styles/partials/vars.css (+43 -0)
📝 web/components/routes/PublicHomeRoute.tsx (+5 -10)
📝 web/components/routes/link/header.tsx (+1 -1)
📝 web/components/routes/link/partials/form/link-form.tsx (+30 -18)
📝 web/components/routes/link/partials/form/notes-section.tsx (+1 -1)
web/components/routes/link/partials/form/topic-selector.tsx (+0 -90)
📝 web/components/routes/page/detail/PageDetailRoute.tsx (+61 -75)
📝 web/components/routes/page/detail/header.tsx (+24 -15)
📝 web/components/routes/search/wrapper.tsx (+5 -9)
📝 web/components/routes/topics/detail/partials/section.tsx (+28 -27)
📝 web/hooks/use-topic-data.ts (+5 -7)
📝 web/lib/constants.ts (+4 -0)
📝 web/store/link.ts (+0 -1)

...and 1 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/linsa-io/linsa/pull/129 **Author:** [@Aslam97](https://github.com/Aslam97) **Created:** 9/3/2024 **Status:** ✅ Merged **Merged:** 9/4/2024 **Merged by:** [@Aslam97](https://github.com/Aslam97) **Base:** `main` ← **Head:** `fix/topic-selector` --- ### 📝 Commits (10+) - [`6cab914`](https://github.com/linsa-io/linsa/commit/6cab91452d01db663d9bdce8d4f6c56513386cf1) feat: add jazz globa group cons - [`a62cb19`](https://github.com/linsa-io/linsa/commit/a62cb190b77253a7e5ceb6d7712754383f46f1b4) chore: remove topic selector atom - [`1057089`](https://github.com/linsa-io/linsa/commit/1057089e0c73c61103778953604399ffea173462) chore: use jazz from constant - [`d1fa9b7`](https://github.com/linsa-io/linsa/commit/d1fa9b7226791ace8d08ccd700414a923fd460bb) chore: remove delete model and add new topic selector - [`637efa0`](https://github.com/linsa-io/linsa/commit/637efa0c8255ea10d97719c3e5731edda5cc8a88) chore: use jazz group id form constant in search component - [`1386f46`](https://github.com/linsa-io/linsa/commit/1386f468328b2510a337341977c188dfb4d7a157) chore: use jazz group id form constant in public home route - [`bd9df84`](https://github.com/linsa-io/linsa/commit/bd9df84317ad1f311333af4b2df5f979dd886611) fix: topic selector in link - [`170a178`](https://github.com/linsa-io/linsa/commit/170a17868a22a52ab380cf46f11e450d3f9242b3) fix: topic section in detail topic - [`6f201d3`](https://github.com/linsa-io/linsa/commit/6f201d300f6f4a60835131a7d74f0ad9dac41fe3) chore: update la editor - [`d77ce50`](https://github.com/linsa-io/linsa/commit/d77ce5003208c3e0fd586b8011310abed03cfdc9) chore: content header tweak class ### 📊 Changes **21 files changed** (+573 additions, -437 deletions) <details> <summary>View changed files</summary> 📝 `web/components/custom/content-header.tsx` (+1 -3) ➖ `web/components/custom/delete-modal.tsx` (+0 -37) ➕ `web/components/custom/topic-selector.tsx` (+179 -0) 📝 `web/components/la-editor/styles/index.css` (+6 -140) ➕ `web/components/la-editor/styles/partials/code-highlight.css` (+86 -0) 📝 `web/components/la-editor/styles/partials/misc.css` (+8 -0) ➕ `web/components/la-editor/styles/partials/prosemirror-base.css` (+86 -0) ➕ `web/components/la-editor/styles/partials/vars.css` (+43 -0) 📝 `web/components/routes/PublicHomeRoute.tsx` (+5 -10) 📝 `web/components/routes/link/header.tsx` (+1 -1) 📝 `web/components/routes/link/partials/form/link-form.tsx` (+30 -18) 📝 `web/components/routes/link/partials/form/notes-section.tsx` (+1 -1) ➖ `web/components/routes/link/partials/form/topic-selector.tsx` (+0 -90) 📝 `web/components/routes/page/detail/PageDetailRoute.tsx` (+61 -75) 📝 `web/components/routes/page/detail/header.tsx` (+24 -15) 📝 `web/components/routes/search/wrapper.tsx` (+5 -9) 📝 `web/components/routes/topics/detail/partials/section.tsx` (+28 -27) 📝 `web/hooks/use-topic-data.ts` (+5 -7) 📝 `web/lib/constants.ts` (+4 -0) 📝 `web/store/link.ts` (+0 -1) _...and 1 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>
adam added the pull-request label 2025-12-29 18:28:01 +01:00
adam closed this issue 2025-12-29 18:28:01 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/linsa#51