From 87156b2854b60d958bb1c0991d562e2b0ed445ee Mon Sep 17 00:00:00 2001 From: ZiuChen Date: Sat, 20 May 2023 16:50:22 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E6=AD=A3=E7=9B=B4=E6=92=AD?= =?UTF-8?q?=E9=97=B4=E7=B2=89=E4=B8=9D=E5=8B=8B=E7=AB=A0=E5=AE=9A=E4=BD=8D?= =?UTF-8?q?=E6=BA=A2=E5=87=BA=E8=A7=86=E5=8F=A3=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 调整最大列数为15 - https://github.com/the1812/Bilibili-Evolved/issues/4181 --- registry/lib/components/live/badge-helper/BadgeHelper.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/registry/lib/components/live/badge-helper/BadgeHelper.vue b/registry/lib/components/live/badge-helper/BadgeHelper.vue index bedda254d..076b0bb10 100644 --- a/registry/lib/components/live/badge-helper/BadgeHelper.vue +++ b/registry/lib/components/live/badge-helper/BadgeHelper.vue @@ -90,7 +90,7 @@ export default Vue.extend({ }, methods: { updateColumnsCount() { - const maxColumnCount = 6 + const maxColumnCount = 15 const columnLength = 12 const element = this.$el as HTMLElement const medalColumns = Math.min(Math.ceil(this.medalList.length / columnLength), maxColumnCount)