Skip to content
This repository was archived by the owner on Aug 31, 2021. It is now read-only.

Commit fc7e955

Browse files
authored
[[ Bug 23219 ]] Extensionbuilder fix arrayKeys for default script and… (#2156)
* [[ Bug 23219 ]] Extensionbuilder fix arrayKeys for default script and user guide
1 parent c4638bf commit fc7e955

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

Toolset/palettes/extension builder/revextensionbuilderbehavior.livecodescript

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -354,11 +354,11 @@ private on displayExtensionData pData
354354
end if
355355

356356
# Userguide
357-
if pData["user_guide"] is not empty then put "Yes" into field "message_guide" of me
357+
if pData["guide_file"] is not empty then put "Yes" into field "message_guide" of me
358358
else put "No user guide found" into field "message_guide" of me
359359

360360
# Default script
361-
if pData["defaultscript"] is not empty then put pData["defaultscript"] into field "defaultscript" of me
361+
if pData["defaultscript_file"] is not empty then put pData["defaultscript_file"] into field "defaultscript" of me
362362
else put "No default script found" into field "defaultscript" of me
363363

364364
# Clear the console

notes/bugfix-23219.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Extensionbuilder: enable display of defaultScript and userguide

0 commit comments

Comments
 (0)