even more updates.

Signed-off-by: Dave Richer <dave@imexsystems.ca>
This commit is contained in:
Dave Richer
2023-12-15 12:26:02 -05:00
parent b2c8e45d5e
commit 87391ff06a

View File

@@ -12,9 +12,10 @@ export default function LoadingSpinner({ loading = true, message, ...props }) {
position: "relative",
alignContent: "center"
}}
// TODO: Client Update - if anything funky happens check this out
{...props.children ? { tip: message ? message : null } : {}}
delay={200}
// TODO: Client Update - tip only works when there are actually children, and this component is used in a lot of places where there are no children
// tip={message ? message : null}
>
{props.children}
</Spin>