fix: remove the | because there is space now

This commit is contained in:
Julien Calixte
2026-01-02 15:27:49 +01:00
parent d78550904d
commit 70457fb8b0

View File

@@ -25,7 +25,7 @@ const renderChart = () => {
xLabel: 'Products', xLabel: 'Products',
yLabel: '# of orders', yLabel: '# of orders',
data: { data: {
labels: products.map((p) => [`${p} ordered`, `${p} made |`]).flat(), labels: products.map((p) => [`${p} ordered`, `${p} made`]).flat(),
datasets: [ datasets: [
{ {
data: products data: products
@@ -55,9 +55,8 @@ watch([orders, inventory], renderChart, { deep: true })
</div> </div>
</template> </template>
<!--
<style scoped lang="scss"> <style scoped lang="scss">
.heijunka-stat { .heijunka-stat {
width: 100%;
} }
</style> </style>
-->