1 parent 2e2205e commit a4bd7d4Copy full SHA for a4bd7d4
1 file changed
src/extension.ts
@@ -397,7 +397,9 @@ export async function activate(context: vscode.ExtensionContext) {
397
const count = await localEndpoint.addFile(targetUri);
398
const { files } = localEndpoint.getInfo();
399
queryPanel?.refreshEndpoints();
400
- vscode.window.showInformationMessage(`Local SPARQL endpoint: ${count} triples loaded (${files.join(', ')})`);
+ vscode.window.showInformationMessage(
401
+ `Local SPARQL endpoint: ${count} triples loaded (${files.map((f) => f.label).join(', ')})`,
402
+ );
403
} catch (err: unknown) {
404
vscode.window.showErrorMessage(`Failed to load RDF file: ${err instanceof Error ? err.message : String(err)}`);
405
}
0 commit comments