Skip to content

Commit 2a37652

Browse files
table section enabled for meta-data
1 parent 3adb160 commit 2a37652

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/renderer/src/components/app/collections/request/response/content/cookies/CookieList.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ const CookieList = ({ cookies }: CookieListProps) => {
4848
{colList.map(item => (
4949
<TableCell
5050
key={item}
51-
className="whitespace-normal wrap-break-word"
51+
className="whitespace-normal wrap-break-word select-all!"
5252
>
5353
<DataTableCellContent
5454
value={cookie[item as keyof typeof cookie] ?? ""}

src/renderer/src/components/app/collections/request/response/content/headers/HeaderContent.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ const HeaderContent = ({ headers }: HeaderContentProps) => {
2727
{[key, value].map((value, index) => (
2828
<TableCell
2929
key={index}
30-
className={cn("whitespace-normal wrap-break-word", {
30+
className={cn("whitespace-normal wrap-break-word select-all!", {
3131
capitalize: !index,
3232
})}
3333
>

src/renderer/src/components/app/history-details/content/meta/meta-table/CellTextContent.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ interface Props {
44

55
const CellTextContent = ({ children }: Props) => {
66
return (
7-
<p className="w-full whitespace-normal wrap-break-word text-sm leading-relaxed">
7+
<p className="w-full whitespace-normal wrap-break-word text-sm leading-relaxed select-all!">
88
{children}
99
</p>
1010
);

0 commit comments

Comments
 (0)