Skip to content

Commit

Permalink
filter solutionId prop
Browse files Browse the repository at this point in the history
  • Loading branch information
michelle0927 committed Feb 4, 2025
1 parent 8ef9ca7 commit 88e2593
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export default {
description: "Identifier of a solution",
async options() {
const { value } = await this.listSolutions();
return value?.map(({
return value?.filter(({ isvisible }) => isvisible)?.map(({
solutionid: value, uniquename, friendlyname,
}) => ({
value,
Expand Down

0 comments on commit 88e2593

Please sign in to comment.