@@ -194,7 +218,7 @@ const handleNavigate = (url) => {
-
+
@@ -209,7 +233,7 @@ const handleNavigate = (url) => {
-
+
@@ -225,7 +249,7 @@ const handleNavigate = (url) => {
-
+
@@ -359,9 +383,9 @@ const handleNavigate = (url) => {
.group_title {
border-radius: 5px;
- cursor: default;
+ cursor: pointer;
- padding: 4px 6px;
+ padding: 6px 6px;
margin: 0 2px;
transition: all 0.2s ease;
diff --git a/components/OgImage/RollupImage.vue b/components/OgImage/RollupImage.vue
index 64eac22a..b21934d2 100644
--- a/components/OgImage/RollupImage.vue
+++ b/components/OgImage/RollupImage.vue
@@ -3,7 +3,7 @@
import { DateTime } from "luxon"
/** Services */
-import { formatBytes } from "@/services/utils"
+import { comma, formatBytes } from "@/services/utils"
defineOptions({
inheritAttrs: false,
@@ -53,7 +53,7 @@ const bgStyles = computed(() => {
Blobs:
- {{ rollup.blobs_count }}
+ {{ comma(rollup.blobs_count) }}
diff --git a/components/cmd/CommandMenu.vue b/components/cmd/CommandMenu.vue
index 52c19ed2..ae8f4211 100644
--- a/components/cmd/CommandMenu.vue
+++ b/components/cmd/CommandMenu.vue
@@ -291,6 +291,15 @@ const rawNavigationActions = [
router.push("/calculators/savings")
},
},
+ {
+ type: "callback",
+ icon: "arrow-narrow-right",
+ title: "Go to Faucet",
+ runText: "Open Faucet",
+ callback: () => {
+ router.push("/faucet")
+ },
+ },
{
type: "callback",
icon: "arrow-narrow-right",
@@ -1454,7 +1463,7 @@ const runBounce = () => {
-
\ No newline at end of file
+
diff --git a/components/modules/stats/BarplotChartCard.vue b/components/modules/stats/BarplotChartCard.vue
new file mode 100644
index 00000000..7da2f42b
--- /dev/null
+++ b/components/modules/stats/BarplotChartCard.vue
@@ -0,0 +1,290 @@
+
+
+