Skip to content

Commit a5d7afd

Browse files
Ihor MasechkoIhor Masechko
authored andcommitted
stabilize case studies search logic and empty-state presentation
1 parent 27aa51a commit a5d7afd

2 files changed

Lines changed: 9 additions & 8 deletions

File tree

website/modules/asset/ui/src/scss/_cases.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -798,6 +798,7 @@
798798
color: $gray-500;
799799
@include responsive-font(20px, 28px);
800800
@include responsive-line-height(120%, 120%);
801+
801802
font-weight: $font-weight-extra-bold;
802803
}
803804

website/modules/case-studies-page/index.js

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -212,17 +212,17 @@ module.exports = {
212212
indexQuery(req) {
213213
return buildIndexQuery(self, req);
214214
},
215-
async resolveSearchRelationships(req) {
216-
return await runResolveSearchRelationships(self, req);
215+
resolveSearchRelationships(req) {
216+
return runResolveSearchRelationships(self, req);
217217
},
218-
async applyEnhancedSearchResults(req) {
219-
return await runApplyEnhancedSearchResults(self, req);
218+
applyEnhancedSearchResults(req) {
219+
return runApplyEnhancedSearchResults(self, req);
220220
},
221-
async setupIndexData(req) {
222-
return await runSetupIndexData(self, req);
221+
setupIndexData(req) {
222+
return runSetupIndexData(self, req);
223223
},
224-
async setupShowData(req) {
225-
return await runSetupShowData(self, req);
224+
setupShowData(req) {
225+
return runSetupShowData(self, req);
226226
},
227227
};
228228
},

0 commit comments

Comments
 (0)