fix(frontend): コンポーネントのpropを非lowerCamelCaseで渡すと機能しない

This commit is contained in:
syuilo
2023-05-17 11:42:50 +09:00
parent cbca48846c
commit e126083e10
7 changed files with 7 additions and 6 deletions

View File

@@ -1,6 +1,6 @@
<template>
<div data-cy-mkw-onlineUsers class="mkw-onlineUsers" :class="{ _panel: !widgetProps.transparent, pad: !widgetProps.transparent }">
<I18n v-if="onlineUsersCount" :src="i18n.ts.onlineUsersCount" text-tag="span" class="text">
<I18n v-if="onlineUsersCount" :src="i18n.ts.onlineUsersCount" textTag="span" class="text">
<template #n><b>{{ number(onlineUsersCount) }}</b></template>
</I18n>
</div>