Document model stack and DEB deduplication

This commit is contained in:
2569718930@qq.com
2026-04-17 00:40:46 +08:00
parent 9ec86e0504
commit 19169e4bdb
3 changed files with 302 additions and 4 deletions
@@ -823,10 +823,11 @@ export function ModelForecast({
<div
className="model-bar-fill"
style={{ width: `${width}%` }}
>
/>
<span className="model-bar-value">
{value}
{detail.temp_symbol}
</div>
</span>
{debLine != null && (
<div
className="model-deb-line"
@@ -860,10 +861,11 @@ export function ModelForecast({
style={{
width: `${((Number(view.deb) - minValue) / range) * 100}%`,
}}
>
/>
<span className="model-bar-value deb">
{Number(view.deb)}
{detail.temp_symbol}
</div>
</span>
</div>
</div>
)}