Skip to content

Commit 963fad5

Browse files
committed
fix up
1 parent e9fa98b commit 963fad5

2 files changed

Lines changed: 4 additions & 85 deletions

File tree

explorer/src/data/compatibility.ts

Lines changed: 1 addition & 82 deletions
Original file line numberDiff line numberDiff line change
@@ -263,87 +263,6 @@ export const compatibility: CompatibilityMatrix = {
263263
"iOS": "fail"
264264
}
265265
},
266-
{
267-
"id": "Coin Payment/create_purse",
268-
"results": {
269-
"Desktop": "fail",
270-
"Web": "fail",
271-
"Android": "fail",
272-
"iOS": "fail"
273-
}
274-
},
275-
{
276-
"id": "Coin Payment/query_purse",
277-
"results": {
278-
"Desktop": "fail",
279-
"Web": "fail",
280-
"Android": "fail",
281-
"iOS": "fail"
282-
}
283-
},
284-
{
285-
"id": "Coin Payment/rebalance_purse",
286-
"results": {
287-
"Desktop": "fail",
288-
"Web": "fail",
289-
"Android": "fail",
290-
"iOS": "fail"
291-
}
292-
},
293-
{
294-
"id": "Coin Payment/delete_purse",
295-
"results": {
296-
"Desktop": "fail",
297-
"Web": "fail",
298-
"Android": "fail",
299-
"iOS": "fail"
300-
}
301-
},
302-
{
303-
"id": "Coin Payment/create_receivable",
304-
"results": {
305-
"Desktop": "fail",
306-
"Web": "fail",
307-
"Android": "fail",
308-
"iOS": "fail"
309-
}
310-
},
311-
{
312-
"id": "Coin Payment/create_cheque",
313-
"results": {
314-
"Desktop": "fail",
315-
"Web": "fail",
316-
"Android": "fail",
317-
"iOS": "fail"
318-
}
319-
},
320-
{
321-
"id": "Coin Payment/deposit",
322-
"results": {
323-
"Desktop": "fail",
324-
"Web": "fail",
325-
"Android": "fail",
326-
"iOS": "fail"
327-
}
328-
},
329-
{
330-
"id": "Coin Payment/refund",
331-
"results": {
332-
"Desktop": "fail",
333-
"Web": "fail",
334-
"Android": "fail",
335-
"iOS": "fail"
336-
}
337-
},
338-
{
339-
"id": "Coin Payment/listen_for_payment",
340-
"results": {
341-
"Desktop": "fail",
342-
"Web": "fail",
343-
"Android": "fail",
344-
"iOS": "fail"
345-
}
346-
},
347266
{
348267
"id": "Entropy/derive",
349268
"results": {
@@ -457,7 +376,7 @@ export const compatibility: CompatibilityMatrix = {
457376
"results": {
458377
"Desktop": "pass",
459378
"Web": "pass",
460-
"Android": "fail",
379+
"Android": "pass",
461380
"iOS": "pass"
462381
}
463382
},

explorer/src/pages/CompatibilityPage.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,17 +59,17 @@ export default function CompatibilityPage() {
5959
</div>
6060
</div>
6161

62-
<div className="overflow-x-auto bg-slate-800/30 border border-slate-700/50 rounded-xl shadow-[0_4px_24px_rgba(0,0,0,0.25)]">
62+
<div className="overflow-auto max-h-[70vh] bg-slate-800/30 border border-slate-700/50 rounded-xl shadow-[0_4px_24px_rgba(0,0,0,0.25)]">
6363
<table className="w-full border-separate border-spacing-0">
6464
<thead>
6565
<tr>
66-
<th className="sticky left-0 z-10 text-left text-[11px] font-semibold uppercase tracking-wider text-slate-400 font-display px-5 py-3 bg-slate-900/70 border-b border-slate-700/60">
66+
<th className="sticky left-0 top-0 z-30 text-left text-[11px] font-semibold uppercase tracking-wider text-slate-400 font-display px-5 py-3 bg-slate-900 border-b border-slate-700/60">
6767
Method
6868
</th>
6969
{hosts.map((h) => (
7070
<th
7171
key={h.label}
72-
className="text-center text-[11px] font-semibold uppercase tracking-wider text-slate-400 font-display px-5 py-3 w-28 whitespace-nowrap bg-slate-900/70 border-b border-l border-slate-700/60"
72+
className="sticky top-0 z-20 text-center text-[11px] font-semibold uppercase tracking-wider text-slate-400 font-display px-5 py-3 w-28 whitespace-nowrap bg-slate-900 border-b border-l border-slate-700/60"
7373
title={`Reported ${h.reportedAt || "(unknown time)"}`}
7474
>
7575
{h.label}

0 commit comments

Comments
 (0)