I try to change a text in a shape on a master slide with code:
PowerPoint.run(function(context) {
var masterSlideShape = context.presentation.slideMasters.getItemAt(0).shapes.getItemAt(5);
masterSlideShape .textFrame.textRange.text = 'Some text';
return context.sync();
});
This works fine with desktop PowerPoint. But when it comes to web version, changes are not applied immediately. They are applied only after I refresh a page.
When I work with slides which are not master, everything is updated online.
No console errors
Any ideas?