Styling updates for HDFS Manage Access Dialog (#7551)

This commit is contained in:
Charles Gagnon
2019-10-08 16:02:55 -07:00
committed by GitHub
parent eee7e52bd4
commit 2fe82e4b2f
8 changed files with 165 additions and 73 deletions

View File

@@ -29,6 +29,7 @@ import { createMssqlApi } from './mssqlApiFactory';
import { localize } from './localize';
import { SqlToolsServer } from './sqlToolsServer';
import { promises as fs } from 'fs';
import { IconPathHelper } from './iconHelper';
const msgSampleCodeDataFrame = localize('msgSampleCodeDataFrame', 'This sample code loads the file into a data frame and shows the first 10 results.');
@@ -47,6 +48,8 @@ export async function activate(context: vscode.ExtensionContext): Promise<IExten
await fs.mkdir(context.logPath);
}
IconPathHelper.setExtensionContext(context);
let prompter: IPrompter = new CodeAdapter();
let appContext = new AppContext(context, new ApiWrapper());