Skip to content

Commit d805f71

Browse files
fix(FeedSourceSettings): Fix unresponsive tab selection.
1 parent 8c18b7a commit d805f71

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/manager/components/FeedSourceSettings.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ export default class FeedSourceSettings extends Component<Props> {
4848
const isProjectAdmin = user.permissions && user.permissions.isProjectAdmin(
4949
project.id, project.organizationId
5050
)
51-
const resourceType = activeComponent === ('settings' && activeSubComponent && activeSubComponent.toLowerCase()) || ''
51+
const resourceType = (activeComponent === 'settings' && activeSubComponent && activeSubComponent.toLowerCase()) || ''
5252

5353
if (disabled) {
5454
return (

0 commit comments

Comments
 (0)