From 0fc84a868401f04d3d38b77bdae8c4adff1a158b Mon Sep 17 00:00:00 2001 From: Greg Lorenzen Date: Mon, 8 Jul 2024 22:29:20 +0000 Subject: [PATCH] Replace material-icons in YearInReview components --- client/components/stats/YearInReview.vue | 2 +- client/components/stats/YearInReviewShort.vue | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/client/components/stats/YearInReview.vue b/client/components/stats/YearInReview.vue index c847877e..5991cf6b 100644 --- a/client/components/stats/YearInReview.vue +++ b/client/components/stats/YearInReview.vue @@ -73,7 +73,7 @@ export default { const addIcon = (icon, color, fontSize, x, y) => { ctx.fillStyle = color - ctx.font = `${fontSize} Material Icons Outlined` + ctx.font = `${fontSize} Material Symbols Outlined` ctx.fillText(icon, x, y) } diff --git a/client/components/stats/YearInReviewShort.vue b/client/components/stats/YearInReviewShort.vue index 1f41f0e7..5d359271 100644 --- a/client/components/stats/YearInReviewShort.vue +++ b/client/components/stats/YearInReviewShort.vue @@ -64,7 +64,7 @@ export default { const addIcon = (icon, color, fontSize, x, y) => { ctx.fillStyle = color - ctx.font = `${fontSize} Material Icons Outlined` + ctx.font = `${fontSize} Material Symbols Outlined` ctx.fillText(icon, x, y) }