Skip to content

Commit

Permalink
#2194 Prevent canvas refresh when palette header is specified (#2195)
Browse files Browse the repository at this point in the history
Signed-off-by: CTomlyn <[email protected]>
  • Loading branch information
tomlyn authored Oct 7, 2024
1 parent 4a50b51 commit cba7304
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ export default class ConfigUtils {
// decide which require a full refresh of the canvas and only compare those
// fields rather than omitting certain fields.
static omitFields(config) {
return omit(config, ["enableEditingActions", "enableDropZoneOnExternalDrag", "enableStateTag"]);
return omit(config, ["enableEditingActions", "enableDropZoneOnExternalDrag", "enableStateTag", "enablePaletteHeader"]);
}

// Returns true if the contents of enablePositionNode1 and enablePositionNode2 are
Expand Down

0 comments on commit cba7304

Please sign in to comment.