Fix checkpoints not being rendered (#30019)
Closes #ISSUE Release Notes: - Agent Beta: Fixed a bug causing "Restore Checkpoint" buttons in the agent panel not to be rendered. Co-authored-by: Antonio Scandurra <me@as-cii.com>
This commit is contained in:
parent
1a80103eaf
commit
6d2c39c265
1 changed files with 1 additions and 1 deletions
|
@ -2082,7 +2082,7 @@ impl ActiveThread {
|
||||||
v_flex()
|
v_flex()
|
||||||
.w_full()
|
.w_full()
|
||||||
.map(|parent| {
|
.map(|parent| {
|
||||||
if let Some(checkpoint) = checkpoint.filter(|_| is_generating) {
|
if let Some(checkpoint) = checkpoint.filter(|_| !is_generating) {
|
||||||
let mut is_pending = false;
|
let mut is_pending = false;
|
||||||
let mut error = None;
|
let mut error = None;
|
||||||
if let Some(last_restore_checkpoint) =
|
if let Some(last_restore_checkpoint) =
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue