Skip to content

Commit

Permalink
Fix filtering by project interfaces bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Jolie Rabideau authored and Jolie Rabideau committed Nov 26, 2024
1 parent 7ddb8dc commit 4f028e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/shared/services/project-settings.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export function filterProjectSettingsContributionsByProjectInterfaces(
Object.entries(contribution.properties).forEach(([key, property]) => {
const { includeProjectInterfaces, excludeProjectInterfaces } = property;

if (includeProjectInterfaces && excludeProjectInterfaces) {
if (includeProjectInterfaces || excludeProjectInterfaces) {
if (
areProjectInterfacesIncluded(
projectInterfaces,
Expand Down

0 comments on commit 4f028e4

Please sign in to comment.