fix: remove the | because there is space now
This commit is contained in:
@@ -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>
|
||||||
-->
|
|
||||||
|
|||||||
Reference in New Issue
Block a user