From 378a9633ff2a3140906486fab3f56498aca6d997 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maur=C3=ADcio=20Meneghini=20Fauth?= Date: Mon, 4 Sep 2023 20:16:38 -0300 Subject: [PATCH] Add title for db and table operation pages MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: MaurĂ­cio Meneghini Fauth --- templates/database/operations/index.twig | 3 ++- templates/table/operations/index.twig | 3 ++- test/selenium/Database/OperationsTest.php | 2 -- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/templates/database/operations/index.twig b/templates/database/operations/index.twig index 1b15e494eb..6451391b57 100644 --- a/templates/database/operations/index.twig +++ b/templates/database/operations/index.twig @@ -1,4 +1,5 @@ -
+
+

{{ 'Database operations'|trans }}

{{ message|raw }} diff --git a/templates/table/operations/index.twig b/templates/table/operations/index.twig index 8a4260ca47..b57777ab8d 100644 --- a/templates/table/operations/index.twig +++ b/templates/table/operations/index.twig @@ -1,4 +1,5 @@ -
+
+

{{ 'Table operations'|trans }}

{% if not hide_order_table %}
diff --git a/test/selenium/Database/OperationsTest.php b/test/selenium/Database/OperationsTest.php index 251af2aef9..8ef70a889b 100644 --- a/test/selenium/Database/OperationsTest.php +++ b/test/selenium/Database/OperationsTest.php @@ -70,8 +70,6 @@ class OperationsTest extends TestBase $this->waitForElement('id', 'functionConfirmOkButton')->click(); - $this->waitForElement('xpath', "//a[contains(text(),'Database: ') and contains(text(),'" . $newDbName . "')]"); - $this->dbQuery( 'SHOW DATABASES LIKE \'' . $newDbName . '\'', function () use ($newDbName): void {