diff --git a/frontend/src/views/Material.vue b/frontend/src/views/Material.vue index c2cb055..3e79cc9 100644 --- a/frontend/src/views/Material.vue +++ b/frontend/src/views/Material.vue @@ -428,7 +428,7 @@ export default { } }, computed: { - onlinePlans() { return this.plans.filter(p => p.status === 'online') }, + onlinePlans() { return this.plans.filter(p => p.status === 'online' || p.status === 'ready') }, producingPlan() { return this.plans.find(p => p.status === 'producing') || null }, equipments() { const n = EQUIPMENTS.length @@ -696,7 +696,7 @@ export default { .line-body { padding: 6px 10px 10px; background: #0a1218; } .line-svg { width: 100%; height: 305px; display: block; } -.split-row { display: grid; grid-template-columns: 1.05fr 1fr; gap: 10px; align-items: stretch; } +.split-row { display: grid; grid-template-columns: 1fr 3fr; gap: 10px; align-items: stretch; } .split-left, .split-right { display: flex; flex-direction: column; min-height: 540px; } .split-right .card-body { flex: 1; overflow-y: auto; }