Issue #2988905 by sourabh.singhal, longwave, Chris Matthews, jhedstrom: Remove machine name data from Responsive image styles table

(cherry picked from commit 7681f14c5c)
merge-requests/64/head
catch 2020-02-03 18:14:35 +00:00
parent 55ca5ff963
commit 795d6bbf33
2 changed files with 0 additions and 3 deletions

View File

@ -15,7 +15,6 @@ class ResponsiveImageStyleListBuilder extends ConfigEntityListBuilder {
*/
public function buildHeader() {
$header['label'] = t('Label');
$header['id'] = t('Machine name');
return $header + parent::buildHeader();
}
@ -24,7 +23,6 @@ class ResponsiveImageStyleListBuilder extends ConfigEntityListBuilder {
*/
public function buildRow(EntityInterface $entity) {
$row['label'] = $entity->label();
$row['id'] = $entity->id();
return $row + parent::buildRow($entity);
}

View File

@ -62,7 +62,6 @@ class ResponsiveImageAdminUITest extends BrowserTestBase {
$this->drupalGet('admin/config/media/responsive-image-style');
$this->assertNoText('There are no responsive image styles yet.');
$this->assertText('Style One');
$this->assertText('style_one');
// Edit the group.
$this->drupalGet('admin/config/media/responsive-image-style/style_one');