Conversation
|
Thank you for submitting this PR!
Getting other community members to do a review would be great help too on complex PRs (you can ask in the chats/forums). If you are unsure about something, just leave us a comment.
We currently aim to provide initial feedback/triaging within two business days. Please keep an eye on any labelling actions, as these will indicate priorities and status of your contribution. |
Signed-off-by: Chayan Das <01chayandas@gmail.com>
d1e8f5c to
a717c5a
Compare
|
Triage note:
|
resolve conflict in FilesPage.js by keeping early not-found check and adding error prop
verify that browsing to a non-existing path shows the "Unable to load this path" error page with a working "Go to Files" button also fix flakiness by waiting for buttons to be enabled before clicking, and fix selector in invalid IPNS test
## [4.11.0](v4.10.0...v4.11.0) (2026-02-05) CID `bafybeidfgbcqy435sdbhhejifdxq4o64tlsezajc272zpyxcsmz47uyc64` --- ### Features * Add search/filter functionality to Files UI ([#2451](#2451)) ([c866be6](c866be6)), closes [#2447](#2447) * DHT Provide Sweep Diagnostic Screen ([#2463](#2463)) ([fb22ea6](fb22ea6)) * **files:** resolve paths before inspect and support protocol URL ([#2465](#2465)) ([74a44d8](74a44d8)) * **files:** support additional image file extensions ([#2347](#2347)) ([371341a](371341a)) ### Bug Fixes * **ci:** test stability improvements ([#2466](#2466)) ([d11475a](d11475a)) * CLI tutor commands missing some parameters ([#2470](#2470)) ([ed8ad6a](ed8ad6a)) * **diagnostics:** handle Go zero time in DHT provide screen ([dc51cd4](dc51cd4)) * **files:** not found page ([#2455](#2455)) ([18b9b0d](18b9b0d)) * show proper error state in import notifications ([#2452](#2452)) ([391470e](391470e)), closes [#2448](#2448) ### Trivial Changes * **ci:** skip publishPreview for dependabot PRs ([17f675e](17f675e)) * pull new translations ([#2467](#2467)) ([cc569f4](cc569f4)) * pull transifex translations ([#2464](#2464)) ([8d7a17f](8d7a17f))
|
🎉 This PR is included in version 4.11.0 🎉 The release is available on GitHub release Your semantic-release bot 📦🚀 |
Bug
FileNotFoundwas not displayed because of an early path check:When files.type === 'not-found', the paths differ, causing an early return.
##Fix
Render FileNotFound before checking for stale paths. This ensures missing files show the correct component.