Skip to content

Commit

Permalink
Disable tableau editor actions while loading the tableau
Browse files Browse the repository at this point in the history
  • Loading branch information
razvanMiu committed Nov 12, 2024
1 parent 95a6218 commit 9f33c3c
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions src/Widgets/VisualizationWidget.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -250,8 +250,14 @@ const VisualizationWidget = (props) => {
<Grid>
<Grid.Row>
<div className="map-edit-actions-container">
<Button onClick={handleClose}>Close</Button>
<Button color="green" onClick={handleApplyChanges}>
<Button disabled={vizState.loading} onClick={handleClose}>
Close
</Button>
<Button
disabled={vizState.loading}
color="green"
onClick={handleApplyChanges}
>
Apply changes
</Button>
</div>
Expand Down

0 comments on commit 9f33c3c

Please sign in to comment.