Update insertText for actions with provider

This commit is contained in:
Christopher Schleiden
2023-01-05 17:34:04 -08:00
parent d16aa652f9
commit 263e3b69ec
@@ -36,6 +36,7 @@ export async function getActionInputValues(
return { return {
label: inputName, label: inputName,
description: input.description, description: input.description,
insertText: `${inputName}: `,
deprecated: input.deprecationMessage !== undefined deprecated: input.deprecationMessage !== undefined
}; };
}); });