Skip to content

Commit

Permalink
fix(bi): Only show the giant loading icon when not showing the editin…
Browse files Browse the repository at this point in the history
…g UI (#20133)
  • Loading branch information
Gilbert09 authored Feb 5, 2024
1 parent 6fca06e commit 4f1850f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ function InternalDataTableVisualization(props: DataTableVisualizationProps): JSX
)

let component: JSX.Element | null = null
if (!response && responseLoading) {
if (!response && responseLoading && !showEditingUI) {
return (
<div className="flex flex-col flex-1 justify-center items-center border rounded bg-bg-light">
<Animation type={AnimationType.LaptopHog} />
Expand Down

0 comments on commit 4f1850f

Please sign in to comment.