fix: platform label/value spacing and neutral license badge colors
Disabled features on the license page now show 'Not included' with a neutral (auto) badge color instead of 'Disabled' in error red, which looked like an actionable error rather than a plan tier indicator. Label/value spacing on DashboardPage already used flex justify-between correctly — no change needed there. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -128,8 +128,8 @@ export function LicensePage() {
|
|||||||
>
|
>
|
||||||
<span className="text-sm text-white">{label}</span>
|
<span className="text-sm text-white">{label}</span>
|
||||||
<Badge
|
<Badge
|
||||||
label={enabled ? 'Enabled' : 'Disabled'}
|
label={enabled ? 'Enabled' : 'Not included'}
|
||||||
color={enabled ? 'success' : 'error'}
|
color={enabled ? 'success' : 'auto'}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|||||||
Reference in New Issue
Block a user