openclaw - 💡(How to fix) Fix [Feature]: UI Custometic - Clicking History BUtton looks like no Ops [1 participants]

Official PRs (…)
ON THIS PAGE

Recommended Tools

×6

Utilities matched from this issue’s tags and category — try them while you read without losing context.

GitHub issue graph ai analysis

Paste a GitHub issue URL. We fetch that issue, discover linked issues from bodies/comments/timeline, collect linked pull requests, and produce a structured English report.

The report is written in English Markdown for sharing and archival.

Helpful · Quick feedback

Loading…
GitHub stats
openclaw/openclaw#59902Fetched 2026-04-08 02:39:01
View on GitHub
Comments
0
Participants
1
Timeline
1
Reactions
0
Author
Participants
Timeline (top)
labeled ×1

On the /cron page, the History button is easy to mistake as broken because clicking it doesn’t open a new view, modal, or drawer. It only updates the existing run-history panel lower on the same page, with little visible feedback. Often the "history" panel is outside of the visible window.

<img width="527" height="324" alt="Image" src="https://github.com/user-attachments/assets/b91fccb2-eb7d-4cbe-9f56-de7679f742bc" />

Root Cause

On the /cron page, the History button is easy to mistake as broken because clicking it doesn’t open a new view, modal, or drawer. It only updates the existing run-history panel lower on the same page, with little visible feedback. Often the "history" panel is outside of the visible window.

RAW_BUFFERClick to expand / collapse

Summary

On the /cron page, the History button is easy to mistake as broken because clicking it doesn’t open a new view, modal, or drawer. It only updates the existing run-history panel lower on the same page, with little visible feedback. Often the "history" panel is outside of the visible window.

<img width="527" height="324" alt="Image" src="https://github.com/user-attachments/assets/b91fccb2-eb7d-4cbe-9f56-de7679f742bc" />

Problem to solve

See summary above.

Proposed solution

Make the action more explicit by either scrolling/focusing the run-history section after click, or opening a dedicated history panel/modal

Alternatives considered

No response

Impact

Affected: Everybody Severity: Annoying Frequency: Always Consequence: Confusion

Evidence/examples

No response

Additional information

No response

extent analysis

TL;DR

The History button's behavior can be improved by making its action more explicit, such as scrolling to or focusing the run-history section after a click.

Guidance

  • Consider adding a smooth scroll effect to the run-history panel when the History button is clicked, to draw the user's attention to the updated content.
  • Alternatively, opening a dedicated history panel or modal could provide a clearer indication that the History button has been activated.
  • To verify the effectiveness of the fix, test the updated behavior with different screen sizes and window positions to ensure the run-history panel is always visible after clicking the History button.
  • When implementing the solution, consider adding a visual feedback mechanism, such as a highlight or animation, to further emphasize the update of the run-history panel.

Example

// Example of smooth scrolling to the run-history panel
document.getElementById('history-button').addEventListener('click', function() {
  var runHistoryPanel = document.getElementById('run-history-panel');
  runHistoryPanel.scrollIntoView({ behavior: 'smooth' });
});

Notes

The proposed solution assumes that the run-history panel is already present on the page and only needs to be scrolled into view or highlighted. If the panel is dynamically loaded or created, additional code may be required to handle its initialization and display.

Recommendation

Apply a workaround by scrolling to or focusing the run-history section after the History button is clicked, as this provides a simple and effective way to make the button's action more explicit.

Vote matrix · Quick signals

Works
Did the solution work? Tap to confirm.
Easy Fix
Was it a quick fix?
Time Saver
Did it save you time?
Blocking
Was it severely blocking?
Common Issue
Are others likely hitting this too?
Flaky / Intermittent
Is it intermittent?
Verified / Reproducible
Can you reproduce it reliably?
Loading…

Still need to ship something?

×6

Another batch ranked right after the header list — different links, same matching logic.

Back to top recommendations

TRENDING

openclaw - 💡(How to fix) Fix [Feature]: UI Custometic - Clicking History BUtton looks like no Ops [1 participants]