We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d13a06e commit b1b8654Copy full SHA for b1b8654
apps/sim/stores/panel/console/store.ts
@@ -183,10 +183,8 @@ export const useConsoleStore = create<ConsoleStore>()(
183
) => {
184
set((state) => {
185
const updatedEntries = state.entries.map((entry) => {
186
- // Match by executionId if provided, otherwise fall back to blockId for backward compatibility
187
- const isMatch = executionId
188
- ? entry.executionId === executionId
189
- : entry.blockId === blockId
+ // Only update if both blockId and executionId match
+ const isMatch = entry.blockId === blockId && entry.executionId === executionId
190
if (isMatch) {
191
if (typeof update === 'string') {
192
// Simple content update for backward compatibility
0 commit comments