feat: include minikube extension as a featured extension (#4845)

* feat: include minikube extension as a featured extension

fixes https://github.com/containers/podman-desktop/issues/4596
Signed-off-by: Florent Benoit <fbenoit@redhat.com>
This commit is contained in:
Florent BENOIT 2023-11-20 09:17:50 +01:00 committed by GitHub
parent c50a440568
commit bf7608fe52
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 1 deletions

File diff suppressed because one or more lines are too long

View file

@ -48,6 +48,6 @@ export class SettingsExtensionsPage extends SettingsPage {
}
public getFeaturedExtension(extensionName: string): Locator {
return this.featuredExtensions.getByLabel(extensionName);
return this.featuredExtensions.getByLabel(extensionName, { exact: true });
}
}