Skip to content

Commit f617801

Browse files
authored
[ENG-8236] Fix missing resource-type dropdown during linked service configuration (#2589)
1 parent 87bfb44 commit f617801

File tree

1 file changed

+2
-1
lines changed
  • lib/osf-components/addon/components/addons-service/configured-addon-edit

1 file changed

+2
-1
lines changed

lib/osf-components/addon/components/addons-service/configured-addon-edit/component.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,8 @@ export default class ConfiguredAddonEdit extends Component<Args> {
6666
}
6767

6868
get isLinkAddon() {
69-
return this.args.configuredAddon instanceof ConfiguredLinkAddonModel;
69+
return this.args.configuredAddon instanceof ConfiguredLinkAddonModel ||
70+
this.args.authorizedAccount instanceof AuthorizedLinkAccountModel;
7071
}
7172

7273
get requiresFilesWidget() {

0 commit comments

Comments
 (0)