Skip to content

Commit

Permalink
Merge branch 'additional_fields_advanced_search' of https://github.co…
Browse files Browse the repository at this point in the history
…m/FAIRsharing/fairsharing.github.io into additional_fields_advanced_search
  • Loading branch information
prakhyatox committed Jul 10, 2024
2 parents 93a1d89 + a38b98c commit 1386c3e
Show file tree
Hide file tree
Showing 8 changed files with 174 additions and 260 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -236,6 +236,7 @@ <h1 class="page-title">Source: components/Records/Search/Input/AdvancedSearch/Ad
&lt;/template>

&lt;script>
import { isBoolean } from "lodash";
import { mapActions, mapGetters } from "vuex";

import TooltipComponent from "@/components/Records/Search/Input/AdvancedSearch/QueryBuilderComponents/TooltipComponent.vue";
Expand Down Expand Up @@ -282,7 +283,7 @@ <h1 class="page-title">Source: components/Records/Search/Input/AdvancedSearch/Ad
) {
this.getAdvancedSearch["children"].forEach(({ children }) => {
if (children &amp;&amp; children.length) {
isTrue = children.every(({ value: { length } }) => length);
isTrue = children.every(({ value }) => value.length || isBoolean(value));
isTrueArr.push(isTrue);
}
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ <h4 class="modal-title">Search results</h4>
<span class="jsdoc-message">
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.3</a>

on Tue Jul 9th 2024
on Wed Jul 10th 2024

using the <a href="https://github.com/docstrap/docstrap">DocStrap template</a>.
</span>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ <h4 class="modal-title">Search results</h4>
<span class="jsdoc-message">
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.3</a>

on Tue Jul 9th 2024
on Wed Jul 10th 2024

using the <a href="https://github.com/docstrap/docstrap">DocStrap template</a>.
</span>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ <h4 class="modal-title">Search results</h4>
<span class="jsdoc-message">
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.3</a>

on Tue Jul 9th 2024
on Wed Jul 10th 2024

using the <a href="https://github.com/docstrap/docstrap">DocStrap template</a>.
</span>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ <h4 class="modal-title">Search results</h4>
<span class="jsdoc-message">
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.3</a>

on Tue Jul 9th 2024
on Wed Jul 10th 2024

using the <a href="https://github.com/docstrap/docstrap">DocStrap template</a>.
</span>
Expand Down
Loading

0 comments on commit 1386c3e

Please sign in to comment.