Add title for db and table operation pages

Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
This commit is contained in:
Maurício Meneghini Fauth 2023-09-04 20:16:38 -03:00
parent a88176fb6f
commit 378a9633ff
No known key found for this signature in database
GPG Key ID: 6A16FD38AFC89CC8
3 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,5 @@
<div class="container-fluid">
<div class="container my-3">
<h2>{{ 'Database operations'|trans }}</h2>
{{ message|raw }}

View File

@ -1,4 +1,5 @@
<div class="container-fluid">
<div class="container my-3">
<h2>{{ 'Table operations'|trans }}</h2>
{% if not hide_order_table %}
<form method="post" id="alterTableOrderby" action="{{ url('/table/operations') }}">

View File

@ -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 {