You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
\r\n is replaced with \n when clicking on a value in special cases. Not sure, but I think is triggered when line exceeds 1024 chars?
To Reproduce
Steps to reproduce the behavior:
Create table:
CREATETABLE `test` (
`id`int(10) unsigned NOT NULL AUTO_INCREMENT,
`value`text DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
INSERT INTO`test` (`id`, `value`) VALUES
(1, 'test\r\ntest'),
(2, 'test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test <td class=\"text-right\">\r\n test test test test test test test test test test test test test test test test test test test test</td>');
Click on the first value, nothing happens even if is \r\n.
Click on the second value
See UPDATE being triggered and \r\n is replaced with \n.
Describe the bug
\r\nis replaced with\nwhen clicking on a value in special cases. Not sure, but I think is triggered when line exceeds 1024 chars?To Reproduce
Steps to reproduce the behavior:
\r\n.UPDATEbeing triggered and\r\nis replaced with\n.Expected behavior
\r\nshould not be replaced with\n.Screenshots
08.11.2024_08.47.02_REC.mp4
Server configuration