Skip to content

Commit

Permalink
fix(FeedSourceSettings): Fix unresponsive tab selection.
Browse files Browse the repository at this point in the history
  • Loading branch information
binh-dam-ibigroup committed Jan 4, 2022
1 parent 8c18b7a commit d805f71
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/manager/components/FeedSourceSettings.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export default class FeedSourceSettings extends Component<Props> {
const isProjectAdmin = user.permissions && user.permissions.isProjectAdmin(
project.id, project.organizationId
)
const resourceType = activeComponent === ('settings' && activeSubComponent && activeSubComponent.toLowerCase()) || ''
const resourceType = (activeComponent === 'settings' && activeSubComponent && activeSubComponent.toLowerCase()) || ''

if (disabled) {
return (
Expand Down

0 comments on commit d805f71

Please sign in to comment.