Skip to content

Commit

Permalink
Nitpick - label change Credential to Key Status (#886)
Browse files Browse the repository at this point in the history
  • Loading branch information
shishir-intelli authored Jul 19, 2023
1 parent 1d85a07 commit 1d4ac2a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions modules/apigee_edge_teams/tests/src/Functional/UiTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,6 @@ protected function teamsWorkflowTest() {

// The team's display name and field values are visible on the canonical
// page.
$this->clickLink($team_display_name);
$this->assertSession()->pageTextContains($team_display_name);
$this->assertSession()->pageTextContains($this->fields['integer']['data']);
$this->assertSession()->pageTextContains($this->fields['email']['data']);
Expand All @@ -193,7 +192,6 @@ protected function teamsWorkflowTest() {
'field_email[0][value]' => $this->fields['email']['data_edited'],
], 'Save team');

$this->clickLink($team_modified_display_name);
$this->assertSession()->pageTextContains($team_modified_display_name);
$this->assertSession()->pageTextContains($this->fields['integer']['data_edited']);
$this->assertSession()->pageTextContains($this->fields['email']['data_edited']);
Expand Down
2 changes: 1 addition & 1 deletion src/Entity/Form/AppEditForm.php
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ public function form(array $form, FormStateInterface $form_state) {

$form['credential'][$credential->getConsumerKey()] = [
'#type' => 'fieldset',
'#title' => $rendered_credential_status . $this->t('Credential'),
'#title' => $this->t('Key Status:') . $rendered_credential_status,
'#collapsible' => FALSE,
];

Expand Down

0 comments on commit 1d4ac2a

Please sign in to comment.