From cad464baadc6c902518c87297721f12370e07c7f Mon Sep 17 00:00:00 2001 From: Brent Ely Date: Sat, 16 May 2020 00:26:04 -0500 Subject: [PATCH] Fix for regression from Pull #620 https://github.com/gitbrent/PptxGenJS/commit/5c6195d196ae35ddd886f1dd7daa05aa84e013de#diff-bcfc646e59f5f5a1fd1e07d3eea51edc --- src/gen-objects.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gen-objects.ts b/src/gen-objects.ts index bc205a1fd..0119d20e3 100644 --- a/src/gen-objects.ts +++ b/src/gen-objects.ts @@ -839,7 +839,7 @@ export function addTextDefinition(target: ISlideLib, text: string | IText[], opt } // A.2: Placeholder should inherit their bullets or override them, so don't default them - if (!opt.placeholder || isPlaceholder) { + if (opt.placeholder || isPlaceholder) { opt.bullet = opt.bullet || false }