File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
node-browser/src/app/browse Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -150,6 +150,7 @@ export class BrowseComponent implements OnInit {
150150 dataType : '' ,
151151 } ) ;
152152 }
153+ }
153154 // Check to see if the geometry can be sent to the map
154155 if (
155156 predicate . predicate . value ===
@@ -176,7 +177,6 @@ export class BrowseComponent implements OnInit {
176177 } ,
177178 } ) ;
178179 }
179- }
180180 } ) ;
181181 } ,
182182 } ) ;
@@ -227,6 +227,9 @@ export class BrowseComponent implements OnInit {
227227 * @returns The full path of the URI
228228 */
229229 private getFullNodePath ( uri : string ) {
230+ if ( uri . includes ( "gnis" ) ) {
231+ return uri
232+ }
230233 let prefix = uri . split ( ':' ) [ 0 ] ;
231234 let val = this . queryService . prefixes [ prefix ] ;
232235 return uri . replace ( prefix . concat ( ':' ) , val ) ;
You can’t perform that action at this time.
0 commit comments