Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: simstudioai/sim
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: f6c9998
Choose a base ref
...
head repository: simstudioai/sim
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: f1ea96c
Choose a head ref
  • 2 commits
  • 3 files changed
  • 1 contributor

Commits on May 20, 2026

  1. fix(table): bump run counter on edit/auto-run so Stop shows for queue…

    …d cells
    
    The "X running" badge + per-row gutter Stop only updated on manual Run
    (useRunColumn bumped the run-state counter). Edit-triggered auto-runs
    (useUpdateTableRow, useBatchUpdateTableRows, useCreateTableRow) stamped cells
    pending in the rows cache but never bumped runningCellCount/runningByRowId, so
    Stop stayed hidden even though cells were queued (the counter is already
    queued-inclusive). Extracted countNewlyInFlight + bumpRunState helpers and
    wired them into all the optimistic auto-fire paths with onError rollback;
    reused them in useRunColumn.
    TheodoreSpeaks committed May 20, 2026
    Configuration menu
    Copy the full SHA
    6128714 View commit details
    Browse the repository at this point in the history
  2. fix(table): no typewriter flash; Run-row skips completed workflows

    - Typewriter: reset the revealed text synchronously during render when the
      value changes (not in an effect), so a cell going from running→value no
      longer flashes the full text for one frame before animating.
    - Run row / manual incomplete runs now treat a `completed` group as done even
      if an output column is blank — only "Run all" re-runs completed cells. The
      auto cascade keeps re-filling blank outputs (completedAndFilled). Client
      optimistic stamp mirrors: incomplete skips `completed` cells.
    TheodoreSpeaks committed May 20, 2026
    Configuration menu
    Copy the full SHA
    f1ea96c View commit details
    Browse the repository at this point in the history
Loading