20260718 修复 Explorer 接口列表键值冲突
This commit is contained in:
parent
c48dc04909
commit
e80fba44c3
@ -94,7 +94,7 @@ export default function ApiStatusPage() {
|
|||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
{ENDPOINTS.map((endpoint) => (
|
{ENDPOINTS.map((endpoint) => (
|
||||||
<tr key={endpoint.path}>
|
<tr key={`${endpoint.method}:${endpoint.path}`}>
|
||||||
<td>
|
<td>
|
||||||
<span className={`method${endpoint.method === "POST" ? " post" : ""}`}>{endpoint.method}</span>
|
<span className={`method${endpoint.method === "POST" ? " post" : ""}`}>{endpoint.method}</span>
|
||||||
{endpoint.path}
|
{endpoint.path}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user