Skip to content
Snippets Groups Projects
Commit d9581922 authored by Michele Alberti's avatar Michele Alberti
Browse files

[ivette] Update studia integration to changes due to source code component.

parent f773af71
No related branches found
No related tags found
No related merge requests found
...@@ -36,8 +36,8 @@ const LocationsTable = () => { ...@@ -36,8 +36,8 @@ const LocationsTable = () => {
(loc: string) => { (loc: string) => {
const markerId = (loc as Json.key<'#markerInfo'>); const markerId = (loc as Json.key<'#markerInfo'>);
const info = markersInfo.getData(markerId); const info = markersInfo.getData(markerId);
const source = info?.position; const sloc = info?.sloc;
const position = `${source?.base}:${source?.line}`; const position = `${sloc?.base}:${sloc?.line}`;
return <Label label={position} title={info?.descr} />; return <Label label={position} title={info?.descr} />;
}; };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment