mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-03-23 09:51:10 +01:00
Better gRPC status on error
This commit is contained in:
@@ -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>
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user