@stoker-platform/web-app 0.5.186 → 0.5.187
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/package.json +1 -1
- package/src/DashboardMetric.tsx +1 -1
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
package/src/DashboardMetric.tsx
CHANGED
|
@@ -180,7 +180,7 @@ export const DashboardMetric = ({ metric, title, collection }: DashboardMetricPr
|
|
|
180
180
|
<div className="text-[16px] font-[600] line-clamp-1 text-center">{metricTitle}</div>
|
|
181
181
|
{connectionStatus === "online" || isPreloadCacheEnabled ? (
|
|
182
182
|
isLoading || (isPreloadCacheEnabled && isCacheLoading) ? (
|
|
183
|
-
<div className="flex items-center justify-center min-h-10">
|
|
183
|
+
<div className="flex items-center justify-center min-h-10 text-primary/80 dark:text-primary">
|
|
184
184
|
<LoadingSpinner size={7} />
|
|
185
185
|
</div>
|
|
186
186
|
) : (
|