get screen type from app prop
This commit is contained in:
parent
e9fcbfe3c8
commit
5b8a8ecc5e
1 changed files with 2 additions and 2 deletions
|
@ -314,13 +314,13 @@ export default class AppTile extends React.Component {
|
||||||
if (SettingsStore.isFeatureEnabled("feature_many_integration_managers")) {
|
if (SettingsStore.isFeatureEnabled("feature_many_integration_managers")) {
|
||||||
IntegrationManagers.sharedInstance().openAll(
|
IntegrationManagers.sharedInstance().openAll(
|
||||||
this.props.room,
|
this.props.room,
|
||||||
'type_' + this.props.type,
|
'type_' + this.props.app.type,
|
||||||
this.props.app.id,
|
this.props.app.id,
|
||||||
);
|
);
|
||||||
} else {
|
} else {
|
||||||
IntegrationManagers.sharedInstance().getPrimaryManager().open(
|
IntegrationManagers.sharedInstance().getPrimaryManager().open(
|
||||||
this.props.room,
|
this.props.room,
|
||||||
'type_' + this.props.type,
|
'type_' + this.props.app.type,
|
||||||
this.props.app.id,
|
this.props.app.id,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue