We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b2c8e47 commit 6c51929Copy full SHA for 6c51929
src/components/SObjectDataTable.tsx
@@ -138,7 +138,11 @@ const SObjectDataTable = ({
138
const ExpandedComponent: React.FC<ExpanderComponentProps<DataRow>> = ({
139
data,
140
}) => {
141
- return <pre>{JSON.stringify(data, null, 2)}</pre>;
+ return (
142
+ <div className="m-5">
143
+ <pre>{JSON.stringify(data, null, 2)}</pre>
144
+ </div>
145
+ );
146
};
147
148
/**
0 commit comments