Skip to content

Commit

Permalink
Removed caching to attempt to resolve #668 (#674)
Browse files Browse the repository at this point in the history
  • Loading branch information
tarjeieo authored Apr 1, 2022
1 parent cdc7a57 commit 51d94ff
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ Every change is marked with issue ID.
### Fixed

- Fixed bug where ProjectTimeline would not load properly #661
- Fixed bug where Risks, Deliveries and Exp.Log would sometimes not load #668

## 1.4.0 - 08.02.2022

Expand Down
2 changes: 1 addition & 1 deletion SharePointFramework/PortfolioWebParts/src/data/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -503,7 +503,7 @@ export class DataAdapter implements IDataAdapter {
* @param selectProperties Select properties
*/
private async _fetchItems(queryTemplate: string, selectProperties: string[]) {
const response = await sp.searchWithCaching({
const response = await sp.search({
QueryTemplate: `${queryTemplate}`,
Querytext: '*',
RowLimit: 500,
Expand Down
2 changes: 1 addition & 1 deletion SharePointFramework/ProgramWebParts/src/data/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -552,7 +552,7 @@ export class DataAdapter {
const promises = []
programFilter.forEach((element) => {
promises.push(
sp.searchWithCaching({
sp.search({
QueryTemplate: `${element} ${queryTemplate}`,
Querytext: '*',
RowLimit: 500,
Expand Down

0 comments on commit 51d94ff

Please sign in to comment.