-
Notifications
You must be signed in to change notification settings - Fork 11
Open
Labels
LegacyIssues that were created by the 2021 BPIssues that were created by the 2021 BPbugSomething isn't workingSomething isn't workingsharedIssues mainly related to sharedIssues mainly related to shared
Description
The uuid is created in the reducer.
reducer: (draftState, { name, message }) => {
const logEntry = EocLogEntry.create(
draftState.currentTime,
message,
name
);
draftState.eocLog.push(cloneDeepMutable(logEntry));
return draftState;
},
export class EocLogEntry {
@IsUUID(4, uuidValidationOptions)
public readonly id: UUID = uuid();
We could either send the id with the action or scrap the id all together.
Metadata
Metadata
Assignees
Labels
LegacyIssues that were created by the 2021 BPIssues that were created by the 2021 BPbugSomething isn't workingSomething isn't workingsharedIssues mainly related to sharedIssues mainly related to shared