Skip to content

Commit

Permalink
Replace r with (r)
Browse files Browse the repository at this point in the history
  • Loading branch information
jloleysens committed Oct 26, 2020
1 parent c13a194 commit 97fab62
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export function convertSettingsIntoLists(
}
}

const dataRoles = nodeSettings.roles.filter(r => r.startsWith('data')) as DataTierRole[];
const dataRoles = nodeSettings.roles.filter((r) => r.startsWith('data')) as DataTierRole[];
for (const role of dataRoles) {
accum.nodesByRoles[role as DataTierRole] = accum.nodesByRoles[role] ?? [];
accum.nodesByRoles[role as DataTierRole]!.push(nodeId);
Expand Down

0 comments on commit 97fab62

Please sign in to comment.