File tree 2 files changed +3
-5
lines changed
2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -62,6 +62,7 @@ import { ShareComponent } from './vault/share.component';
62
62
import { VaultComponent } from './vault/vault.component' ;
63
63
import { ViewComponent } from './vault/view.component' ;
64
64
65
+ import { BarComponent } from '../cozy/wrappers/bar/bar.component' ;
65
66
import { BottomMenuComponent } from '../cozy/wrappers/bottom-menu/bottom-menu.component' ;
66
67
import { ButtonExtensionComponent } from '../cozy/wrappers/button-extension/button-extension.component' ;
67
68
import { ConfirmTrustedUsersComponent } from '../cozy/wrappers/confirm-trusted-users/confirm-trusted-users.component' ;
@@ -72,7 +73,6 @@ import { ImportPageComponent } from '../cozy/wrappers/import-page/import-page.co
72
73
import { InstallationPageComponent } from '../cozy/wrappers/installation-page/installation-page.component' ;
73
74
import { SharingPaywallComponent } from '../cozy/wrappers/sharing-paywall/sharing-paywall.component' ;
74
75
import { SharingComponent } from '../cozy/wrappers/sharing/sharing.component' ;
75
- import { BarComponent } from '../cozy/wrappers/bar/bar.component' ;
76
76
77
77
import { FlagConditionalComponent } from '../cozy/components/flag-conditional/flag-conditional.component' ;
78
78
import { IfFlagDirective } from '../cozy/components/flag-conditional/if-flag.directive' ;
Original file line number Diff line number Diff line change 8
8
// @ts -ignore
9
9
import Bar from './bar.jsx' ;
10
10
11
- interface BarProps extends AngularWrapperProps { }
12
-
13
11
@Component ( {
14
12
selector : 'app-bar' ,
15
13
templateUrl : '../angular-wrapper.component.html' ,
@@ -21,11 +19,11 @@ export class BarComponent extends AngularWrapperComponent implements OnChanges {
21
19
/* Props Bindings */
22
20
/******************/
23
21
24
- protected async getProps ( ) : Promise < BarProps > {
22
+ protected async getProps ( ) : Promise < AngularWrapperProps > {
25
23
const reactWrapperProps = await this . getReactWrapperProps ( true ) ;
26
24
27
25
return {
28
- reactWrapperProps : reactWrapperProps
26
+ reactWrapperProps : reactWrapperProps ,
29
27
} ;
30
28
}
31
29
You can’t perform that action at this time.
0 commit comments