Skip to content

Commit

Permalink
fix more jsdoc
Browse files Browse the repository at this point in the history
  • Loading branch information
DiegoVinasco committed Sep 1, 2023
1 parent ac48136 commit 75883e5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -160,11 +160,10 @@ export class SparqlQueryWindow extends EventSender {

/**
* fetchC3DTileFeatureWithNodeText takes a parameter `gmlId` and returns a feature from a `3DTileslayer` if
* the batch table content of the feature contains a given `gmlid`string in the 'gml_id' key.
* @param {string} gmlId a given gml ID.
* the batch table content of the feature contains a given `gmlid`string in the 'gml_id' key
* @param {string} gmlId a given gml ID
* @returns {object} containting the feature and the layer containing the feature
*
*/
*/
fetchC3DTileFeatureWithNodeText(gmlId) {
let result = null;
this.itownsView
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ export class Workspace extends Graph {
* @param {object} configSparqlWidget.namespaceLabels Prefix declarations which will replace text labels in the Legend.
* This doesn't (yet) affect the legend font size.
*/
constructor() {
super();
constructor(configSparqlWidget) {
super(configSparqlWidget);
}

/**
Expand Down

0 comments on commit 75883e5

Please sign in to comment.