Skip to content

Commit 90d6da3

Browse files
angelozerrfbricon
authored andcommitted
fix: set platformOnly to false to collect all extensions in the wizard
Signed-off-by: azerr <azerr@redhat.com>
1 parent 0d00c6f commit 90d6da3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utils/requestUtils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ const HEADERS = {
3030
};
3131

3232
export async function getQExtensions(platform?: string): Promise<QExtension[]> {
33-
const apiUrl = `${QuarkusConfig.getApiUrl()}/extensions${platform === undefined ? `` : `/stream/${platform}`}`;
33+
const apiUrl = `${QuarkusConfig.getApiUrl()}/extensions${platform === undefined ? `` : `/stream/${platform}`}?platformOnly=false`;
3434
const extensions: APIExtension[] = await tryGetExtensionsJSON(apiUrl);
3535
const qExtensions: QExtension[] = extensions.map((ext: APIExtension) => {
3636
return convertToQExtension(ext);

0 commit comments

Comments
 (0)