Skip to content

Commit

Permalink
unlocking merge submission when loading state (usually reloading)
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisj committed Feb 28, 2024
1 parent 9a091c7 commit 1d3518c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/datasource/graphene/frontend.ts
Original file line number Diff line number Diff line change
Expand Up @@ -983,7 +983,7 @@ class MergeState extends RefCounted implements Trackable {
ERROR_JSON_KEY,
verifyString,
);
const locked = verifyObjectProperty(obj, LOCKED_JSON_KEY, verifyBoolean);
const locked = false; //verifyObjectProperty(obj, LOCKED_JSON_KEY, verifyBoolean);
const sink = restoreSegmentSelection(obj[SINK_JSON_KEY]);
const source = restoreSegmentSelection(obj[SOURCE_JSON_KEY]);
return {
Expand Down

0 comments on commit 1d3518c

Please sign in to comment.