Skip to content

Commit cdb10d9

Browse files
authored
Merge pull request ceph#66124 from rhcs-dashboard/fix-svc-create-issue
mgr/dashboard: fix oauth2-service creation UI error Reviewed-by: Pedro Gonzalez Gomez <[email protected]>
2 parents 34c0b10 + f213d84 commit cdb10d9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pybind/mgr/dashboard/frontend/src/app/ceph/cluster/services/service-form/service-form.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1314,7 +1314,7 @@ export class ServiceFormComponent extends CdForm implements OnInit {
13141314
serviceSpec['https_address'] = values['https_address']?.trim();
13151315
serviceSpec['redirect_url'] = values['redirect_url']?.trim();
13161316
serviceSpec['allowlist_domains'] = values['allowlist_domains']
1317-
.split(',')
1317+
?.split(',')
13181318
.map((domain: string) => {
13191319
return domain.trim();
13201320
});

0 commit comments

Comments
 (0)