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
Currently, if the value of a given cell contains special characters (i.e. <, > or &), they will be copied in their HTML-encoded form, thus preventing using the value for things like SQL filters.
The cell value should be decoded upon writing its contents to the clipboard.
Steps to replicate:
CREATETABLEchars (char string);
INSERT INTO chars (char) VALUES ('&');
INSERT INTO chars (char) VALUES ('<');
INSERT INTO chars (char) VALUES ('>');
SELECT*FROM chars;
Then, copy any cell to clipboard and paste elsewhere.
The text was updated successfully, but these errors were encountered:
Currently, if the value of a given cell contains special characters (i.e.
<
,>
or&
), they will be copied in their HTML-encoded form, thus preventing using the value for things like SQL filters.The cell value should be decoded upon writing its contents to the clipboard.
Steps to replicate:
Then, copy any cell to clipboard and paste elsewhere.
The text was updated successfully, but these errors were encountered: