misskey/packages/frontend
かっこかり 927aa9dc3d
fix(frontend): inline な SearchMarker のパスが正しくない問題を修正 (#16301)
* replace URL path for inlined SearchMarkers

The search index looks like:

```ts
[
 {
   id: 'foo', label: 'security',
   path: '/settings/security', inlining: ['2fa'],
 },
 {
   id: '2fa',
   label: 'two-factor auth',
   path: '/settings/2fa', // guessed wrong by the index generation
 },
 {
   id: 'aaaa',
   parentId: '2fa',
   label: 'totp',
 },
 …
]
```

This file post-processes that index and re-parents the inlined
sections. Problem was, it left the (wrong) `path` untouched.

Replacing the `path` makes the search work fine.

* Update Changelog

---------

Co-authored-by: dakkar <dakkar@thenautilus.net>
2025-07-30 14:39:55 +09:00
..
.storybook fix(ci): change Chromatic build to be triggered when frontend `package.json` is edited instead of lockfile (#15793) 2025-04-27 10:49:23 +09:00
.vscode test(#10336): add `components/Mk[A-B].*` stories (#10475) 2023-04-13 12:20:39 +09:00
@types Feat: ドライブ周りのUIの強化 (#16011) 2025-05-21 07:31:24 +09:00
assets feat(frontend): 画像編集機能 (#16121) 2025-06-03 19:18:29 +09:00
lib chore(frontend): 開発モード時に言語ファイルの変更を自動で反映するように (#16215) 2025-06-26 08:26:44 +09:00
public (re) update SPDX-FileCopyrightText 2024-02-13 15:59:27 +00:00
src fix(frontend): inline な SearchMarker のパスが正しくない問題を修正 (#16301) 2025-07-30 14:39:55 +09:00
test feat(frontend): 絵文字をミュート可能にする機能 (#15966) 2025-05-12 10:00:06 +09:00
.gitignore build(#10336): Storybook & Chromatic & msw (#10365) 2023-04-04 09:38:34 +09:00
eslint.config.js refactor(frontend): improve pagination implementation 2025-06-29 15:11:25 +09:00
package.json fix(deps): update [frontend] update dependencies (#16202) 2025-07-17 12:14:19 +09:00
tsconfig.json Block deliver by software (#15727) 2025-05-01 17:58:34 +09:00
vite.config.ts chore(frontend): 開発モード時に言語ファイルの変更を自動で反映するように (#16215) 2025-06-26 08:26:44 +09:00
vite.json5.ts Fix type errors from vite.json5.ts (#9936) 2023-02-15 17:14:47 +09:00
vue-shims.d.ts Fix/vue import error on intellij (#12612) 2023-12-09 13:13:31 +09:00