Skip to content

Commit 30e3a27

Browse files
atrakhConvex, Inc.
authored andcommitted
make empty states fade in (#36332)
GitOrigin-RevId: 51f9dfa87c94b63caf15eae7f20710e00acd9af7
1 parent 0efb84a commit 30e3a27

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

npm-packages/dashboard-common/src/features/data/components/EmptyData.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ export function EmptyDataContent({
5454
}
5555

5656
return (
57-
<div className="relative h-full w-full">
57+
<div className="relative h-full w-full animate-fadeIn">
5858
{/* Background table example */}
5959
<div
6060
className="pointer-events-none absolute inset-0"

npm-packages/dashboard-common/src/features/functions/components/FunctionsView.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ function Functions() {
107107

108108
function EmptyFunctions() {
109109
return (
110-
<div className="relative h-full w-full overflow-hidden">
110+
<div className="relative h-full w-full animate-fadeIn overflow-hidden">
111111
{/* Background example */}
112112
<div
113113
className="pointer-events-none absolute inset-0 select-none"

0 commit comments

Comments
 (0)