diff --git a/dpc-portal/app/components/core/card/basic_component.html.erb b/dpc-portal/app/components/core/card/basic_component.html.erb index f674194a1..0f3512bad 100644 --- a/dpc-portal/app/components/core/card/basic_component.html.erb +++ b/dpc-portal/app/components/core/card/basic_component.html.erb @@ -6,7 +6,7 @@
You can invite users to be Credential Delegates.
Client tokens monitor who's accessing the API with your organization credentials.
<% if @organization.client_tokens.present? %> @@ -17,7 +17,7 @@Public keys verify that client token requests come from an authorized application.
<% if @organization.public_keys.present? %> @@ -35,7 +35,7 @@ <% end %> <%= render(Core::Card::BasicComponent.new(text_content: 'Provide a maximum of 8 public IP addresses associated with systems that will access claims data.
<% if @organization.public_ips.present? %> diff --git a/dpc-portal/spec/components/page/credential_delegate/list_component_spec.rb b/dpc-portal/spec/components/page/credential_delegate/list_component_spec.rb index 06a1affe0..13959828b 100644 --- a/dpc-portal/spec/components/page/credential_delegate/list_component_spec.rb +++ b/dpc-portal/spec/components/page/credential_delegate/list_component_spec.rb @@ -48,7 +48,7 @@You can invite users to be Credential Delegates.
diff --git a/dpc-portal/spec/components/page/organization/credentials_componenent_spec.rb b/dpc-portal/spec/components/page/organization/credentials_componenent_spec.rb index 5bf0b8a32..3a2cc0a45 100644 --- a/dpc-portal/spec/components/page/organization/credentials_componenent_spec.rb +++ b/dpc-portal/spec/components/page/organization/credentials_componenent_spec.rb @@ -20,19 +20,19 @@ let(:org) { ComponentSupport::MockOrg.new(0) } it 'Should have Generate token button' do button = <<~BUTTON - Generate token + Generate token BUTTON is_expected.to include(normalize_space(button)) end it 'Should have Create key button' do button = <<~BUTTON - Add key + Add key BUTTON is_expected.to include(normalize_space(button)) end it 'Should have Add IP button' do button = <<~BUTTON - Add IP + Add IP BUTTON is_expected.to include(normalize_space(button)) end