This is an automated email from the ASF dual-hosted git repository.
shanedell pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/daffodil-vscode.git
The following commit(s) were added to refs/heads/main by this push:
new 6cd4d99 Update data editor not to default to config
6cd4d99 is described below
commit 6cd4d99537b471c4b4c792187c75003f77f7c9a0
Author: CoverRyan <[email protected]>
AuthorDate: Thu Jan 15 12:59:45 2026 -0500
Update data editor not to default to config
---
src/dataEditor/dataEditorClient.ts | 7 +------
1 file changed, 1 insertion(+), 6 deletions(-)
diff --git a/src/dataEditor/dataEditorClient.ts
b/src/dataEditor/dataEditorClient.ts
index 0765a00..def11f1 100644
--- a/src/dataEditor/dataEditorClient.ts
+++ b/src/dataEditor/dataEditorClient.ts
@@ -83,7 +83,6 @@ import {
import { getCurrentHeartbeatInfo } from './include/server/heartbeat'
import * as child_process from 'child_process'
import { osCheck } from '../utils'
-import { getCurrentConfig } from '../utils'
import { isDFDLDebugSessionActive } from './include/utils'
//
*****************************************************************************
@@ -121,11 +120,7 @@ export function activate(ctx: vscode.ExtensionContext):
void {
DATA_EDITOR_COMMAND,
async (fileToEdit: string = '') => {
let configVars = editor_config.extractConfigurationVariables()
- return await createDataEditorWebviewPanel(
- ctx,
- configVars,
- vscode.debug.activeDebugSession ? getCurrentConfig().data :
fileToEdit
- )
+ return await createDataEditorWebviewPanel(ctx, configVars, fileToEdit)
}
)
)