Skip to content

Commit ebcf66a

Browse files
[update] changes for translated versions
1 parent 703d87d commit ebcf66a

File tree

12 files changed

+12
-24
lines changed

12 files changed

+12
-24
lines changed

i18n/cn/docusaurus-plugin-content-docs/current/api/config/js_kanban_editorshape_config.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -313,8 +313,7 @@ uploadURL: rec => {
313313
.then(res => res.json())
314314
.then(
315315
data => {
316-
rec.id = data.id;
317-
return data;
316+
return { id: rec.id, ...data };
318317
},
319318
() => ({ id: rec.id, status: "error" })
320319
)

i18n/cn/docusaurus-plugin-content-docs/current/guides/configuration.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -313,8 +313,7 @@ new kanban.Kanban("#root", {
313313
.then(res => res.json())
314314
.then(
315315
data => {
316-
rec.id = data.id;
317-
return data;
316+
return { id: rec.id, ...data };
318317
},
319318
() => ({ id: rec.id, status: "error" })
320319
)

i18n/de/docusaurus-plugin-content-docs/current/api/config/js_kanban_editorshape_config.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -313,8 +313,7 @@ uploadURL: rec => {
313313
.then(res => res.json())
314314
.then(
315315
data => {
316-
rec.id = data.id;
317-
return data;
316+
return { id: rec.id, ...data };
318317
},
319318
() => ({ id: rec.id, status: "error" })
320319
)

i18n/de/docusaurus-plugin-content-docs/current/guides/configuration.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -313,8 +313,7 @@ new kanban.Kanban("#root", {
313313
.then(res => res.json())
314314
.then(
315315
data => {
316-
rec.id = data.id;
317-
return data;
316+
return { id: rec.id, ...data };
318317
},
319318
() => ({ id: rec.id, status: "error" })
320319
)

i18n/en/docusaurus-plugin-content-docs/current/api/config/js_kanban_editorshape_config.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -312,8 +312,7 @@ uploadURL: rec => {
312312
.then(res => res.json())
313313
.then(
314314
data => {
315-
rec.id = data.id;
316-
return data;
315+
return { id: rec.id, ...data };
317316
},
318317
() => ({ id: rec.id, status: "error" })
319318
)

i18n/en/docusaurus-plugin-content-docs/current/guides/configuration.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -313,8 +313,7 @@ new kanban.Kanban("#root", {
313313
.then(res => res.json())
314314
.then(
315315
data => {
316-
rec.id = data.id;
317-
return data;
316+
return { id: rec.id, ...data };
318317
},
319318
() => ({ id: rec.id, status: "error" })
320319
)

i18n/ko/docusaurus-plugin-content-docs/current/api/config/js_kanban_editorshape_config.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -313,8 +313,7 @@ uploadURL: rec => {
313313
.then(res => res.json())
314314
.then(
315315
data => {
316-
rec.id = data.id;
317-
return data;
316+
return { id: rec.id, ...data };
318317
},
319318
() => ({ id: rec.id, status: "error" })
320319
)

i18n/ko/docusaurus-plugin-content-docs/current/guides/configuration.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -313,8 +313,7 @@ new kanban.Kanban("#root", {
313313
.then(res => res.json())
314314
.then(
315315
data => {
316-
rec.id = data.id;
317-
return data;
316+
return { id: rec.id, ...data };
318317
},
319318
() => ({ id: rec.id, status: "error" })
320319
)

i18n/ru/docusaurus-plugin-content-docs/current/api/config/js_kanban_editorshape_config.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -313,8 +313,7 @@ uploadURL: rec => {
313313
.then(res => res.json())
314314
.then(
315315
data => {
316-
rec.id = data.id;
317-
return data;
316+
return { id: rec.id, ...data };
318317
},
319318
() => ({ id: rec.id, status: "error" })
320319
)

i18n/ru/docusaurus-plugin-content-docs/current/guides/configuration.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -313,8 +313,7 @@ new kanban.Kanban("#root", {
313313
.then(res => res.json())
314314
.then(
315315
data => {
316-
rec.id = data.id;
317-
return data;
316+
return { id: rec.id, ...data };
318317
},
319318
() => ({ id: rec.id, status: "error" })
320319
)

0 commit comments

Comments
 (0)