Skip to content

Commit

Permalink
Bug Fixes for Vis Builder
Browse files Browse the repository at this point in the history
Signed-off-by: Suchit Sahoo <[email protected]>
  • Loading branch information
LDrago27 committed May 22, 2024
1 parent 99c7862 commit 711697a
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 160 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
padding: calc($euiSizeS - ($euiSizeXS / 2)) $euiSizeS $euiSizeS $euiSizeS;
background-color: $euiColorLightShade;
border-radius: $euiBorderRadius;
overflow-x: hidden;
}

&__field {
Expand Down
159 changes: 0 additions & 159 deletions src/plugins/vis_builder/public/application/components/workspace.tsx

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ export class PersistedState extends EventEmitter {
}

// update the merged state value
const targetObj = this._mergedState || cloneDeep(this._defaultState);
const targetObj = cloneDeep(this._mergedState) || cloneDeep(this._defaultState);
const sourceObj = merge({}, this._changedState);

// handler arguments are (targetValue, sourceValue, key, target, source)
Expand Down

0 comments on commit 711697a

Please sign in to comment.