refactor: pre release cleanup all over the place

This commit is contained in:
Rainer Killinger
2022-10-21 16:01:44 +00:00
parent c3130a392a
commit acdd93eb99
20 changed files with 215 additions and 139 deletions

View File

@@ -20,6 +20,7 @@ import {
AnimationBuilder,
AnimationController,
} from '@ionic/angular';
import {Capacitor} from '@capacitor/core';
import {
SCFacet,
SCFeatureConfiguration,
@@ -250,7 +251,9 @@ export class SearchPageComponent implements OnInit, OnDestroy {
* Hides keyboard in native app environments
*/
hideKeyboard() {
Keyboard.hide();
if (Capacitor.isNativePlatform()) {
Keyboard.hide();
}
}
/**