Task module size parameters not working in MS Teams V2 app when using number of pixels
teamstester
0
Reputation points
We are using task modules in tabs for our Microsoft Teams custom application. The sizing works fine for the task modules in Microsoft Teams classic version when specifying the number of pixels but the sizing does not work in the new Microsoft Teams v2 when specifying the number of pixels.
We are using the following command in an Angular application,
this.microsoftTeams.tasks.startTask(taskInfo, (_, result) => {
and passing in the sizing via the TaskInfo object
let taskInfo = {
height: 2400,
width: 2400,
url: 'mycustomurl'
};
Sign in to answer