Synced from monorepo
Changes: - grok-shell: request workspaces:read/write OAuth2 scopes - security: fix SSRF bypass via HTTP redirect in hook runner - fix(grok-build): enterprise STT WSS URL + API-key voice bearer - Harden identity-change purge and sync-marker invariants - sandbox + workspace-server: delete the legacy ready-file arm - Show billing URL when browser cannot open - fix(pager): show folder-trust UI in minimal mode - fix(pager): drain task_backgrounded before no-wait headless exit - grok-agent-sdk: stop SDK-spawned agents from staging self-updates they can never adopt - Split settings_modal into directory module - Delegate VS Code SSH file links - grok-shell: release the workspace session binding when a session is removed - keep skills reachable when their name collides with a client builtin - Preserve semantic link targets
This commit is contained in:
parent
c68e39f604
commit
8adf9013a0
117 changed files with 16998 additions and 14540 deletions
|
|
@ -71,7 +71,12 @@ pub(super) fn prompt_style(
|
|||
/// Draw the pinned live region (tail + status + prompt) into the inline viewport.
|
||||
pub fn draw_live(app: &mut AppView, terminal: &mut PagerTerminal) {
|
||||
let force_todos = minimal_api::minimal_show_todos(app);
|
||||
let auth_hint = crate::auth::minimal_auth_hint(&app.auth_state);
|
||||
let auth_hint = crate::auth::minimal_auth_hint(
|
||||
&app.auth_state,
|
||||
&app.trust_state,
|
||||
app.has_access(),
|
||||
app.is_zdr_blocked(),
|
||||
);
|
||||
let pending_hint = minimal_pending_hint(&app.pending_action);
|
||||
let transcript_hint = if minimal_api::minimal_ctrl_o_opens_transcript(app) {
|
||||
"ctrl+o transcript"
|
||||
|
|
|
|||
Loading…
Reference in a new issue