(col)
| 101 | key: "byUser", |
| 102 | width: 100, |
| 103 | render(col) { |
| 104 | if (col) { |
| 105 | return <span style={{ color: "#52c41a" }}>{t("yes")}</span>; |
| 106 | } |
| 107 | return <span style={{ color: "#c4751a" }}>{t("no")}</span>; |
| 108 | }, |
| 109 | }, |
| 110 | { |
| 111 | title: t("action"), |
nothing calls this directly
no test coverage detected