Skip to content

Commit

Permalink
automatic chores: linting [skip-ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
github-automatic-chores committed Oct 16, 2024
1 parent de8b624 commit 6b9c6a6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 3 additions & 1 deletion SharePointFramework/PortfolioWebParts/src/data/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -587,7 +587,9 @@ export class DataAdapter implements IPortfolioWebPartsDataAdapter {
users
}
let projects = this._combineResultData(result)
projects = projects.filter((m) => m.lifecycleStatus !== 'Avsluttet' && m.lifecycleStatus !== 'Stengt')
projects = projects.filter(
(m) => m.lifecycleStatus !== 'Avsluttet' && m.lifecycleStatus !== 'Stengt'
)
projects = projects.sort((a, b) => a.title.localeCompare(b.title))
return projects
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -599,7 +599,8 @@ export class SPDataAdapter
// eslint-disable-next-line quotes
.filter("GtProjectLifecycleStatus ne 'Avsluttet' and GtProjectLifecycleStatus ne 'Stengt'")
.orderBy('Title')
.using(DefaultCaching).getAll<SPProjectItem>(),
.using(DefaultCaching)
.getAll<SPProjectItem>(),
MSGraph.Get<IGraphGroup[]>(
'/me/memberOf/$/microsoft.graph.group',
['id', 'displayName'],
Expand Down

0 comments on commit 6b9c6a6

Please sign in to comment.