[PR #161] [MERGED] fix: Bug fixing & Enhancement #80

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

📋 Pull Request Information

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

Base: mainHead: bug-fixing


📝 Commits (10+)

  • 3d99ebc chore: memoize sorted pages
  • 36e53d4 chore: make link size more precise
  • c62ebcf fix(link): disable enter press on create mode
  • 540e542 fix(onboarding): move is base logic and use escape for single quote
  • 2eb2aab fix(page): on delete success redirect to pages
  • 8d2cf9e fix(sntry): sentry client error report
  • 960dc76 chore(page): dynamic focus on title/content
  • a9ed676 chore(link): tweak badge class
  • 0a08ec9 chore(link): use nuqs for handling create mode
  • 5af42c3 fix(link): refs

📊 Changes

20 files changed (+181 additions, -231 deletions)

View changed files

📝 web/.env.example (+4 -2)
web/app/api/sentry-example-api/route.ts (+0 -9)
web/app/sentry-example-page/page.tsx (+0 -79)
📝 web/components/custom/command-palette/command-data.ts (+1 -1)
📝 web/components/custom/learn-anything-onboarding.tsx (+6 -8)
📝 web/components/custom/sidebar/partial/link-section.tsx (+53 -45)
📝 web/components/custom/sidebar/partial/page-section.tsx (+17 -23)
📝 web/components/routes/link/LinkRoute.tsx (+4 -3)
📝 web/components/routes/link/bottom-bar.tsx (+22 -23)
📝 web/components/routes/link/list.tsx (+4 -6)
📝 web/components/routes/link/manage.tsx (+4 -5)
📝 web/components/routes/link/partials/link-item.tsx (+6 -2)
📝 web/components/routes/page/detail/PageDetailRoute.tsx (+13 -16)
web/components/routes/page/hooks/use-page-actions.ts (+36 -0)
📝 web/instrumentation.ts (+4 -0)
📝 web/next.config.mjs (+3 -4)
📝 web/package.json (+2 -2)
📝 web/sentry.client.config.ts (+1 -1)
📝 web/sentry.server.config.ts (+1 -1)
📝 web/store/link.ts (+0 -1)

📄 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/161 **Author:** [@Aslam97](https://github.com/Aslam97) **Created:** 9/11/2024 **Status:** ✅ Merged **Merged:** 9/11/2024 **Merged by:** [@Aslam97](https://github.com/Aslam97) **Base:** `main` ← **Head:** `bug-fixing` --- ### 📝 Commits (10+) - [`3d99ebc`](https://github.com/linsa-io/linsa/commit/3d99ebca54f46fd472739f6aa8fc803dd97e9ffb) chore: memoize sorted pages - [`36e53d4`](https://github.com/linsa-io/linsa/commit/36e53d4eb3cea9c2ff5d1f76c4af0a7263cb9e13) chore: make link size more precise - [`c62ebcf`](https://github.com/linsa-io/linsa/commit/c62ebcf9d312dc79f42c46396bf01b0b113c675f) fix(link): disable enter press on create mode - [`540e542`](https://github.com/linsa-io/linsa/commit/540e542384f009c9f19800d9210f29c09db3a5d4) fix(onboarding): move is base logic and use escape for single quote - [`2eb2aab`](https://github.com/linsa-io/linsa/commit/2eb2aab7929385512a495eb7aebe25708534e1e9) fix(page): on delete success redirect to pages - [`8d2cf9e`](https://github.com/linsa-io/linsa/commit/8d2cf9e676f72479a74a8745c8d5e56ac10e145d) fix(sntry): sentry client error report - [`960dc76`](https://github.com/linsa-io/linsa/commit/960dc761e1f0c877cdfefd07d0e43e480ac4fa6b) chore(page): dynamic focus on title/content - [`a9ed676`](https://github.com/linsa-io/linsa/commit/a9ed6769a3387a710e823dec70ade0142ef3657f) chore(link): tweak badge class - [`0a08ec9`](https://github.com/linsa-io/linsa/commit/0a08ec9082c7dac88ca93a71115307915c12c1f9) chore(link): use nuqs for handling create mode - [`5af42c3`](https://github.com/linsa-io/linsa/commit/5af42c378826c13f25dcb3008ce3440431ed6bc0) fix(link): refs ### 📊 Changes **20 files changed** (+181 additions, -231 deletions) <details> <summary>View changed files</summary> 📝 `web/.env.example` (+4 -2) ➖ `web/app/api/sentry-example-api/route.ts` (+0 -9) ➖ `web/app/sentry-example-page/page.tsx` (+0 -79) 📝 `web/components/custom/command-palette/command-data.ts` (+1 -1) 📝 `web/components/custom/learn-anything-onboarding.tsx` (+6 -8) 📝 `web/components/custom/sidebar/partial/link-section.tsx` (+53 -45) 📝 `web/components/custom/sidebar/partial/page-section.tsx` (+17 -23) 📝 `web/components/routes/link/LinkRoute.tsx` (+4 -3) 📝 `web/components/routes/link/bottom-bar.tsx` (+22 -23) 📝 `web/components/routes/link/list.tsx` (+4 -6) 📝 `web/components/routes/link/manage.tsx` (+4 -5) 📝 `web/components/routes/link/partials/link-item.tsx` (+6 -2) 📝 `web/components/routes/page/detail/PageDetailRoute.tsx` (+13 -16) ➕ `web/components/routes/page/hooks/use-page-actions.ts` (+36 -0) 📝 `web/instrumentation.ts` (+4 -0) 📝 `web/next.config.mjs` (+3 -4) 📝 `web/package.json` (+2 -2) 📝 `web/sentry.client.config.ts` (+1 -1) 📝 `web/sentry.server.config.ts` (+1 -1) 📝 `web/store/link.ts` (+0 -1) </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:11 +01:00
adam closed this issue 2025-12-29 18:28:12 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/linsa#80