浏览代码

fix: inconsistent text color for settings button in webapp cards (#24754)

tags/1.8.1
lyzno1 2 个月前
父节点
当前提交
f8f768873e
没有帐户链接到提交者的电子邮件
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      web/app/components/app/overview/app-card.tsx

+ 1
- 1
web/app/components/app/overview/app-card.tsx 查看文件

@@ -311,7 +311,7 @@ function AppCard({
>
<div className="flex items-center justify-center gap-[1px]">
<op.opIcon className="h-3.5 w-3.5" />
<div className={`${runningStatus ? 'text-text-tertiary' : 'text-components-button-ghost-text-disabled'} system-xs-medium px-[3px]`}>{op.opName}</div>
<div className={`${(runningStatus || !disabled) ? 'text-text-tertiary' : 'text-components-button-ghost-text-disabled'} system-xs-medium px-[3px]`}>{op.opName}</div>
</div>
</Tooltip>
</Button>

正在加载...
取消
保存