Skip to content

Commit bd85afd

Browse files
fix
1 parent bd24df6 commit bd85afd

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/lib/make-toolbox-xml.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1682,7 +1682,7 @@ const myBlocks = function () {
16821682
`;
16831683
};
16841684

1685-
const liveTests = function (isLiveTest, targetId, soundName) {
1685+
const liveTests = function (isLiveTest, targetId, soundName, backdropName) {
16861686
const hello = translate('LOOKS_HELLO', 'Hello, World!');
16871687
return `
16881688
<category name="Live Tests" id="liveTests" colour="#FF0000" secondaryColour="#FF0000">
@@ -1792,7 +1792,7 @@ const makeToolboxXML = function (isInitialSetup, isStage = true, targetId, categ
17921792
const variablesXML = moveCategory('data') || variables(isInitialSetup, isStage, targetId);
17931793
const listsXML = moveCategory('lists') || lists(isInitialSetup, isStage, targetId);
17941794
const myBlocksXML = moveCategory('procedures') || myBlocks(isInitialSetup, isStage, targetId);
1795-
const liveTestsXML = moveCategory('liveTests') || liveTests(isLiveTest, targetId, soundName);
1795+
const liveTestsXML = moveCategory('liveTests') || liveTests(isLiveTest, targetId, soundName, backdropName);
17961796

17971797
const everything = [
17981798
xmlOpen,

0 commit comments

Comments
 (0)