diff options
| author | 2023-01-25 22:23:51 +0100 | |
|---|---|---|
| committer | 2023-01-25 22:23:51 +0100 | |
| commit | 1c4b328ae14ce94c56171eb28ca4dc0c665051f4 (patch) | |
| tree | c47e2c5520f084046541409e5d56e99a5fd4de80 /app/views/helpers/configure | |
| parent | 1aab0459fa4080ad16e8bb872b117c24bc7f3318 (diff) | |
Improved: expanding inputs (#5040)
* fix
* wider input element
Diffstat (limited to 'app/views/helpers/configure')
| -rw-r--r-- | app/views/helpers/configure/query.phtml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/helpers/configure/query.phtml b/app/views/helpers/configure/query.phtml index a75333cfc..f8d51c193 100644 --- a/app/views/helpers/configure/query.phtml +++ b/app/views/helpers/configure/query.phtml @@ -12,7 +12,7 @@ <div class="form-group"> <label class="group-name" for="name"><?= _t('conf.query.name') ?></label> <div class="group-controls"> - <input type="text" name="name" id="name" class="extend" value="<?= $this->query->getName() ?>" /> + <input type="text" name="name" id="name" value="<?= $this->query->getName() ?>" /> </div> </div> <legend><?= _t('conf.query.filter') ?></legend> @@ -20,7 +20,7 @@ <div class="form-group"> <label class="group-name" for=""><?= _t('conf.query.filter.search') ?></label> <div class="group-controls"> - <input type="text" id="query_search" name="query[search]" class="extend" value="<?= htmlspecialchars($this->query->getSearch(), ENT_COMPAT, 'UTF-8') ?>"/> + <input type="text" id="query_search" name="query[search]" value="<?= htmlspecialchars($this->query->getSearch(), ENT_COMPAT, 'UTF-8') ?>"/> </div> </div> <div class="form-group"> |
