mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-13 07:24:13 +01:00
N°6362 - Fix export of linkset tab not working due to JS error
This commit is contained in:
@@ -390,6 +390,11 @@ function ExportListDlg(sOQL, sDataTableId, sFormat, sDlgTitle) {
|
||||
for (var j in oColumns) {
|
||||
if (oColumns[j]['data']) {
|
||||
if (oColumns[j]['data']!='id') {
|
||||
// Ignore columns that seem not to contain an attribute
|
||||
if (typeof oColumns[j]['data'] !== 'string') {
|
||||
continue;
|
||||
}
|
||||
|
||||
var sCode = oColumns[j]['data'].split("/");
|
||||
if (sCode[1] == '_key_') {
|
||||
sCode[1] = 'id';
|
||||
|
||||
Reference in New Issue
Block a user