ESLint: fix object-curly-spacing

This commit is contained in:
Yury Bondarenko
2023-06-27 17:29:40 +02:00
parent 436a4d7645
commit 0633460107
280 changed files with 765 additions and 765 deletions

View File

@@ -94,9 +94,9 @@ export class MetadataValuesComponent implements OnChanges {
* @param value the specific metadata value being linked
*/
getQueryParams(value) {
const queryParams = {startsWith: value};
const queryParams = { startsWith: value };
if (this.browseDefinition.getRenderType() === VALUE_LIST_BROWSE_DEFINITION.value) {
return {value: value};
return { value: value };
}
return queryParams;
}