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
The aliases column shows an unedited (correct) tooltip. For the actual contents of the column, the first " and the last "@en is cut off, which leaves strings like ZDB ID"@en "ZDB identifier or in other words a list of elements separated by the string "@en ".
It would be preferable to iterate over all elements of the list (separated by a space) and cut off the beginning and end from every one of them instead of from the whole thing. A new separator would be needed in that case. Using semicolon, this would yield ZDB ID; ZDB identifier for the mentioned example.
This might lead to problems if the actual content contains the separator (e.g. semicolon), so it should be chosen carefully. I suggest ; or |.
The text was updated successfully, but these errors were encountered:
Take the following query for example:
The aliases column shows an unedited (correct) tooltip. For the actual contents of the column, the first
"
and the last"@en
is cut off, which leaves strings likeZDB ID"@en "ZDB identifier
or in other words a list of elements separated by the string"@en "
.It would be preferable to iterate over all elements of the list (separated by a space) and cut off the beginning and end from every one of them instead of from the whole thing. A new separator would be needed in that case. Using semicolon, this would yield
ZDB ID; ZDB identifier
for the mentioned example.This might lead to problems if the actual content contains the separator (e.g. semicolon), so it should be chosen carefully. I suggest
;
or|
.The text was updated successfully, but these errors were encountered: