We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1dd8b8d commit cbd3416Copy full SHA for cbd3416
src/modules/deals/deal/buildDealDetails.tsx
@@ -96,7 +96,28 @@ export function buildDealDetails({
96
},
97
}),
98
...(deal.trust && {
99
- Trust: <p>{deal.trust}</p>,
+ Trust: {
100
+ tooltip: (
101
+ <>
102
+ Indicates the task replication level:
103
+ <ul className="list-inside list-disc">
104
+ <li>
105
+ <code className="bg-primary-foreground text-primary -mx-1 rounded-sm px-1 py-px">
106
+ 0
107
+ </code>
108
+ : single execution
109
+ </li>
110
111
112
+ 1
113
114
+ : replicated for consensus
115
116
+ </ul>
117
+ </>
118
+ ),
119
+ value: <p>{deal.trust}</p>,
120
+ },
121
122
...(deal.app && {
123
App: (
0 commit comments