Skip to content

Commit

Permalink
remove the forced uppercase in compare
Browse files Browse the repository at this point in the history
  • Loading branch information
jgreywolf committed Nov 30, 2023
1 parent 1ddbb2c commit 0e6546b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ export class PowerPointService extends OfficeService {
for (let tagIndex = 0; tagIndex < tags.items.length; tagIndex++) {
const currentTag = tags.items[tagIndex];

if (currentTag.key === C.TokenSettingName.toUpperCase()) {
if (currentTag.key === C.TokenSettingName) {
currentShape.delete();
await this.replaceExistingDiagram(currentTag.value);
}
Expand Down

0 comments on commit 0e6546b

Please sign in to comment.