Better gRPC status on error

This commit is contained in:
Gregory Schier
2024-02-24 12:41:43 -08:00
parent 8347093e8b
commit 36eabe7528
5 changed files with 155 additions and 89 deletions

View File

@@ -29,10 +29,12 @@ interface Props {
export function KeyValueRow({ label, value, labelClassName }: Props) {
return (
<>
<td className={classNames('py-1 pr-2 text-gray-700 select-text cursor-text', labelClassName)}>
<td
className={classNames('py-0.5 pr-2 text-gray-700 select-text cursor-text', labelClassName)}
>
{label}
</td>
<td className="py-1 cursor-text select-text break-all min-w-0">{value}</td>
<td className="py-0.5 cursor-text select-text break-all min-w-0">{value}</td>
</>
);
}