mirror of
https://github.com/arduino/arduino-ide.git
synced 2025-07-13 06:16:33 +00:00
Corrected library.properties assignment w.r.t description and summary
Ref: arduino/arduino-ide#1611
This commit is contained in:
parent
b3b94948a3
commit
b451e2db8c
@ -221,8 +221,8 @@ export class LibraryServiceImpl
|
|||||||
{
|
{
|
||||||
name: library.getName(),
|
name: library.getName(),
|
||||||
installedVersion,
|
installedVersion,
|
||||||
description: library.getSentence(),
|
description: library.getParagraph(),
|
||||||
summary: library.getParagraph(),
|
summary: library.getSentence(),
|
||||||
moreInfoLink: library.getWebsite(),
|
moreInfoLink: library.getWebsite(),
|
||||||
includes: library.getProvidesIncludesList(),
|
includes: library.getProvidesIncludesList(),
|
||||||
location: this.mapLocation(library.getLocation()),
|
location: this.mapLocation(library.getLocation()),
|
||||||
@ -462,9 +462,9 @@ function toLibrary(
|
|||||||
author: lib.getAuthor(),
|
author: lib.getAuthor(),
|
||||||
availableVersions,
|
availableVersions,
|
||||||
includes: lib.getProvidesIncludesList(),
|
includes: lib.getProvidesIncludesList(),
|
||||||
description: lib.getSentence(),
|
description: lib.getParagraph(),
|
||||||
moreInfoLink: lib.getWebsite(),
|
moreInfoLink: lib.getWebsite(),
|
||||||
summary: lib.getParagraph(),
|
summary: lib.getSentence(),
|
||||||
category: lib.getCategory(),
|
category: lib.getCategory(),
|
||||||
types: lib.getTypesList(),
|
types: lib.getTypesList(),
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user