We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 656e7d6 commit 59c0610Copy full SHA for 59c0610
1 file changed
extensions/ql-vscode/src/data-extensions-editor/extension-packs.ts
@@ -73,6 +73,10 @@ export async function pickModelFile(
73
}
74
75
76
+ if (modelFiles.size === 0) {
77
+ return pickNewModelFile(token, databaseItem, extensionPackPath);
78
+ }
79
+
80
const fileOptions: Array<{ label: string; file: string | null }> = [];
81
for (const file of modelFiles) {
82
fileOptions.push({
0 commit comments