aboutsummaryrefslogtreecommitdiff
path: root/app/views/helpers/category
diff options
context:
space:
mode:
authorGravatar maTh <math-home@web.de> 2023-01-25 22:23:51 +0100
committerGravatar GitHub <noreply@github.com> 2023-01-25 22:23:51 +0100
commit1c4b328ae14ce94c56171eb28ca4dc0c665051f4 (patch)
treec47e2c5520f084046541409e5d56e99a5fd4de80 /app/views/helpers/category
parent1aab0459fa4080ad16e8bb872b117c24bc7f3318 (diff)
Improved: expanding inputs (#5040)
* fix * wider input element
Diffstat (limited to 'app/views/helpers/category')
-rw-r--r--app/views/helpers/category/update.phtml2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/helpers/category/update.phtml b/app/views/helpers/category/update.phtml
index 171ee20a4..a0986ff04 100644
--- a/app/views/helpers/category/update.phtml
+++ b/app/views/helpers/category/update.phtml
@@ -16,7 +16,7 @@
<div class="form-group">
<label class="group-name" for="name"><?= _t('sub.category.title') ?></label>
<div class="group-controls">
- <input type="text" name="name" id="name" class="extend" value="<?= $this->category->name() ?>" <?php
+ <input type="text" name="name" id="name" value="<?= $this->category->name() ?>" <?php
//Disallow changing the name of the default category
echo $this->category->id() == FreshRSS_CategoryDAO::DEFAULTCATEGORYID ? 'disabled="disabled"' : '';
?> />