-
Notifications
You must be signed in to change notification settings - Fork 4k
97187: Android - Show history button is not displayed in Concierge chat #99605
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
base: main
Are you sure you want to change the base?
Changes from all commits
23aa5e3
14bd888
01f5afe
9579952
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -98,7 +98,7 @@ function useReportActionsListModel(reportID: string, isReportLoadPending: boolea | |
| hasOlderActions, | ||
| loadOlderChats, | ||
| mainDMSessionStartTime: sessionStartTime, | ||
| conciergeShowFullHistory: conciergeShowFullHistory || !!reportActionIDFromRoute || !!report?.hasOutstandingChildTask, | ||
| conciergeShowFullHistory: conciergeShowFullHistory || !!reportActionIDFromRoute, | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
For Concierge reports whose open task action is older than the current pagination chain, removing Useful? React with 👍 / 👎. |
||
| setConciergeShowFullHistory, | ||
| conciergeHadMessagesAtSessionStart, | ||
| setConciergeHadMessagesAtSessionStart, | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
When a user opens the Concierge DM in a fresh session without sending a new message,
showConciergeSidePanelWelcomeis true andfilterActions()returns only the greeting and CREATED action before this new predicate is evaluated. Consequently, even a loaded open task that was previously visible becausehasOutstandingChildTaskenabled full history is now hidden until the user expands history; the added test avoids this path by inserting an in-session user message. The welcome branch must also retain open child tasks.Useful? React with 👍 / 👎.