Skip to content

Commit 2b9b6b6

Browse files
authored
Merge pull request #60 from erodewald/fix-paragraph-description
Add ability to set description on paragraph
2 parents f78ae10 + ec64291 commit 2b9b6b6

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

lib/pages/paragraph-setting.js

+7-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,13 @@ module.exports = class ParagraphSetting extends SectionSetting {
99
}
1010

1111
text(value) {
12-
this.name(value)
12+
super.name(value)
13+
return this
14+
}
15+
16+
description(value) {
17+
super.description(value)
18+
return this
1319
}
1420

1521
image(value) {

0 commit comments

Comments
 (0)