mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-28 09:35:38 -05:00
Add Azure Function Service Error/Cancel tests (#19758)
* cleanup tests * exit/error scenario tests * remove + from manuallyEnterObjectName * address comments * add resolve for writeFile
This commit is contained in:
@@ -680,7 +680,7 @@ export async function promptSelectTable(connectionURI: string, bindingType: Bind
|
||||
// Get schema and table names from query result rows
|
||||
const tableNames = queryResult!.rows.map(r => r[0].displayValue);
|
||||
// add manual entry option to table names list for user to choose from as well (with pencil icon)
|
||||
let manuallyEnterObjectName = '$(pencil) ' + userObjectName;
|
||||
let manuallyEnterObjectName = constants.manuallyEnterObjectName(userObjectName);
|
||||
tableNames.unshift(manuallyEnterObjectName);
|
||||
// prompt user to select table from list of tables options
|
||||
while (true) {
|
||||
|
||||
Reference in New Issue
Block a user