title: '🛫 ' + name,
subtitle: 'start',
data: {
+ store: formatDisplay(store.$id),
action: formatDisplay(name),
args,
},
title: '🛬 ' + name,
subtitle: 'end',
data: {
+ store: formatDisplay(store.$id),
action: formatDisplay(name),
args,
result,
title: '💥 ' + name,
subtitle: 'end',
data: {
+ store: formatDisplay(store.$id),
action: formatDisplay(name),
args,
error,
const eventData: TimelineEvent = {
time: Date.now(),
title: formatMutationType(type),
- data: formatEventData(events),
+ data: {
+ store: formatDisplay(store.$id),
+ ...formatEventData(events),
+ },
groupId: activeAction,
}
title: '🔥 ' + store.$id,
subtitle: 'HMR update',
data: {
- id: formatDisplay(store.$id),
+ store: formatDisplay(store.$id),
info: formatDisplay(`HMR update`),
},
},