Merge pull request #5081 from matrix-org/msuess/fix-edit-multiple-widget-instances

get screen type from app prop
This commit is contained in:
J. Ryan Stinnett
2020-08-10 14:14:25 +01:00
committed by GitHub

View File

@@ -314,13 +314,13 @@ export default class AppTile extends React.Component {
if (SettingsStore.isFeatureEnabled("feature_many_integration_managers")) {
IntegrationManagers.sharedInstance().openAll(
this.props.room,
'type_' + this.props.type,
'type_' + this.props.app.type,
this.props.app.id,
);
} else {
IntegrationManagers.sharedInstance().getPrimaryManager().open(
this.props.room,
'type_' + this.props.type,
'type_' + this.props.app.type,
this.props.app.id,
);
}