-
Notifications
You must be signed in to change notification settings - Fork 3.8k
fix: address release review findings #8276
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
d1af604
fix(desktop): admit browser download saves before reading the body
waleedlatif1 7107ca4
fix(desktop): walk cross-realm shadow roots when resolving upload tar…
waleedlatif1 e4ad8e7
fix(chat): keep an activity's completed title off runs while it still…
waleedlatif1 16549c2
fix(search): keep partial coverage through persisted search compaction
waleedlatif1 5a3a512
fix(organization): route chat URLs the same way as organization Home
waleedlatif1 1fe12ef
fix(organization): keep a custom date range when Home restores Search…
waleedlatif1 01831dd
fix(chat): project desktop tabs in organization Assistant chats
waleedlatif1 d7d4afe
fix(home): make the chat/resource panel divider keyboard-adjustable
waleedlatif1 36e70b6
docs(rules): scope member avatar aria-hidden to rows that show the name
waleedlatif1 c2e05c4
docs(skills): clarify service-mode selector guidance in add-connector
waleedlatif1 306d80a
fix(home): keep a focused divider's value current through window resizes
waleedlatif1 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,20 @@ | ||
| import { organizationRoutes, WORKSPACE_SETTINGS_PATH } from '@/lib/navigation/paths' | ||
| import type { OrganizationSurfaceContext } from '@/lib/organizations/surface' | ||
|
|
||
| /** | ||
| * Where organization Home and its chat URLs send a viewer Home cannot serve, or `null` when | ||
| * Home renders. Search when Chat is off but member Search is on; workspace settings when the | ||
| * viewer can neither both chat and build, nor search as a member. | ||
| */ | ||
| export function getOrganizationHomeRedirect( | ||
| context: Pick<OrganizationSurfaceContext, 'mothershipAvailable' | 'canBuild' | 'searchAccess'>, | ||
| organizationId: string | ||
| ): string | null { | ||
| if (!context.mothershipAvailable && context.searchAccess.memberScoped) { | ||
| return organizationRoutes(organizationId).search | ||
| } | ||
| if (!(context.mothershipAvailable && context.canBuild) && !context.searchAccess.memberScoped) { | ||
| return WORKSPACE_SETTINGS_PATH | ||
| } | ||
| return null | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.