@@ -78,6 +78,10 @@ export const routes: Routes = [
{
path: 'tab2',
loadComponent: () => import('./tab2/tab2.page').then( m => m.Tab2Page)
+ },
+ {
+ path: 'tab7',
+ loadComponent: () => import('./tab7/tab7.page').then( m => m.Tab7Page)
}
@@ -112,6 +112,7 @@ export class CloudQuery {
equalTo(key: string, value: any) {
+ if (!this.queryParams["where"]) this.queryParams["where"] = {};
this.queryParams["where"][key] = value;