forked from qt-creator/qt-creator
Axivion: Fix displaying tags
Change-Id: I5071630c3f62a4c3bb2b01495ec37f45ef7fa0c2 Reviewed-by: Jarek Kobus <jaroslaw.kobus@qt.io>
This commit is contained in:
@@ -106,6 +106,9 @@ QString anyToSimpleString(const Dto::Any &any)
|
|||||||
value = anyMap.find("name");
|
value = anyMap.find("name");
|
||||||
if (value != anyMap.end())
|
if (value != anyMap.end())
|
||||||
return anyToSimpleString(value->second);
|
return anyToSimpleString(value->second);
|
||||||
|
value = anyMap.find("tag");
|
||||||
|
if (value != anyMap.end())
|
||||||
|
return anyToSimpleString(value->second);
|
||||||
}
|
}
|
||||||
return {};
|
return {};
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user