Commit 5e6bd0f5 authored by utkarsh_33's avatar utkarsh_33 Committed by Tim Plunkett
Browse files

Issue #3318789 by Utkarsh_33, srishtiiee, rkoller: Improve the microcopy for...

Issue #3318789 by Utkarsh_33, srishtiiee, rkoller: Improve the microcopy for no search results available
parent ba98002d
Loading
Loading
Loading
Loading
+0 −0

File changed.

Preview suppressed by a .gitattributes entry or the file's encoding is unsupported.

+0 −0

File changed.

Preview suppressed by a .gitattributes entry or the file's encoding is unsupported.

+1 −1
Changes for sveltejs/src/ProjectGrid.svelte: 1 added line, 1 removed line.
Original line number Diff line number Diff line
@@ -18,7 +18,7 @@
  export let pageSize = 12;
  export let rows;
  export let labels = {
    empty: Drupal.t('No records available'),
    empty: Drupal.t('No modules found'),
    loading: Drupal.t('Loading data'),
  };

+1 −1
Changes for tests/src/FunctionalJavascript/ProjectBrowserExamplePluginTest.php: 1 added line, 1 removed line.
Original line number Diff line number Diff line
@@ -51,7 +51,7 @@ class ProjectBrowserExamplePluginTest extends WebDriverTestBase {
    $this->assertEquals('Grid', $this->getElementText('#project-browser .toggle-buttons .grid-button'));
    $assert_session->waitForElementVisible('css', '#project-browser .project');
    $this->assertTrue($assert_session->waitForText('Project 1'));
    $assert_session->pageTextNotContains('No records available');
    $assert_session->pageTextNotContains('No modules found');
    $this->svelteInitHelper('css', '.pb-categories input[type="checkbox"]');
    $assert_session->elementsCount('css', '.pb-categories input[type="checkbox"]', 2);
  }
+1 −1
Changes for tests/src/FunctionalJavascript/ProjectBrowserPluginTest.php: 1 added line, 1 removed line.
Original line number Diff line number Diff line
@@ -51,7 +51,7 @@ class ProjectBrowserPluginTest extends WebDriverTestBase {
    $this->assertEquals('Grid', $this->getElementText('#project-browser .toggle-buttons .grid-button'));
    $assert_session->waitForElementVisible('css', '#project-browser .project');
    $this->assertTrue($assert_session->waitForText('Results'));
    $assert_session->pageTextNotContains('No records available');
    $assert_session->pageTextNotContains('No modules found');
  }

  /**
Loading