fix(curriculum): adjust editable region indentation in workshop-library-manager (#63908)

This commit is contained in:
majestic-owl448
2025-11-17 12:52:25 +01:00
committed by GitHub
parent 07b9a80cab
commit 99adb08d0b
10 changed files with 10 additions and 10 deletions
@@ -85,7 +85,7 @@ assert.propertyVal(library[0], "pages", 320);
```js
const library = [
--fcc-editable-region--
--fcc-editable-region--
];
```
@@ -157,6 +157,6 @@ console.log(getBookInformation(library));
console.log("\nList of book summaries:\n");
--fcc-editable-region--
--fcc-editable-region--
```
@@ -173,6 +173,6 @@ console.log(getBookSummaries(library));
console.log("\nList of books by Arvid Kahl:\n");
--fcc-editable-region--
--fcc-editable-region--
```
@@ -167,7 +167,7 @@ console.log(getBooksByAuthor(library, "James Clear"));
console.log("\nTotal number of pages for all library books:\n");
--fcc-editable-region--
--fcc-editable-region--
```
@@ -79,6 +79,6 @@ const library = [
];
--fcc-editable-region--
--fcc-editable-region--
```
@@ -83,6 +83,6 @@ const library = [
console.log("Books in the Library:\n");
--fcc-editable-region--
--fcc-editable-region--
```
@@ -123,7 +123,7 @@ console.log("Books in the Library:\n");
--fcc-editable-region--
function getBookInformation(catalog) {
}
--fcc-editable-region--
```
@@ -103,6 +103,6 @@ function getBooksByAuthor(catalog, author) {
}
--fcc-editable-region--
--fcc-editable-region--
```
@@ -111,6 +111,6 @@ function getBooksByAuthor(catalog, author) {
console.log(getBooksByAuthor(library, "Arvid Kahl"));
--fcc-editable-region--
--fcc-editable-region--
```
@@ -104,6 +104,6 @@ console.log("\nList of books by James Clear:\n");
console.log(getBooksByAuthor(library, "James Clear"));
--fcc-editable-region--
--fcc-editable-region--
```