diff --git a/msteams-platform/concepts/tabs/tabs-configuration.md b/msteams-platform/concepts/tabs/tabs-configuration.md index 088009afac8..e84491d49f0 100644 --- a/msteams-platform/concepts/tabs/tabs-configuration.md +++ b/msteams-platform/concepts/tabs/tabs-configuration.md @@ -111,7 +111,7 @@ Use `microsoftTeams.settings.setSettings({entityId, contentUrl, suggestedTabName ### React when the user chooses the Save button -Often you might not be able to determine the `entityId` or `contentUrl` immediately. For example, you might first need create a resource (a document or a task), and you want to do this only after the user selects **Save**. To be notified when the user selects **Save**, you must call `microsoftTeams.settings.registerOnSaveHandler(function(saveEvent) { /* ... */ })`. After this is done, when the user selects **Save**, Microsoft Teams calls the save event handler you registered. +Often you might not be able to determine the `entityId` or `contentUrl` immediately. For example, you might first need to create a resource (a document or a task), and you want to do this only after the user selects **Save**. To be notified when the user selects **Save**, you must call `microsoftTeams.settings.registerOnSaveHandler(function(saveEvent) { /* ... */ })`. After this is done, when the user selects **Save**, Microsoft Teams calls the save event handler you registered. You can return the settings asynchronously if, for example, the user has requested a new resource which will take time for you to create. To do this, store `saveEvent` for later. If you do not notify the outcome within 30 seconds, Microsoft Teams terminates the operation and displays an error. diff --git a/msteams-platform/resources/schema/manifest-schema.md b/msteams-platform/resources/schema/manifest-schema.md index f70ad7c6658..d4f6a7ae2a3 100644 --- a/msteams-platform/resources/schema/manifest-schema.md +++ b/msteams-platform/resources/schema/manifest-schema.md @@ -38,8 +38,8 @@ The following schema sample shows all extensibility options. "full": "Full description of your app" }, "icons": { - "outline": "%FILENAME-20x20px%", - "color": "%FILENAME-96x96px" + "outline": "%FILENAME-32x32px%", + "color": "%FILENAME-192x192px" }, "accentColor": "%HEX-COLOR%", "configurableTabs": [ @@ -219,8 +219,8 @@ Icons used within the Teams app. The icon files must be included as part of the |Name| Maximum size | Required | Description| |---|---|---|---| -|`outline`|2048 characters|✔|A relative file path to a transparent 20x20 PNG outline icon.| -|`color`|2048 characters|✔|A relative file path to a full color 96x96 PNG icon.| +|`outline`|2048 characters|✔|A relative file path to a transparent 32x32 PNG outline icon.| +|`color`|2048 characters|✔|A relative file path to a full color 192x192 PNG icon.| ## accentColor