diff --git a/adminer/include/functions.inc.php b/adminer/include/functions.inc.php
index d259f761..c69f7679 100644
--- a/adminer/include/functions.inc.php
+++ b/adminer/include/functions.inc.php
@@ -978,7 +978,7 @@ function input($field, $value, $function) {
$attrs .= " cols='50' rows='12'";
} else {
$rows = min(12, substr_count($value, "\n") + 1);
- $attrs .= " cols='30' rows='$rows'" . ($rows == 1 ? " style='height: 1.2em;'" : ""); // 1.2em - line-height
+ $attrs .= " cols='30' rows='$rows'";
}
echo "';
} elseif ($function == "json" || preg_match('~^jsonb?$~', $field["type"])) {
diff --git a/plugins/edit-textarea.php b/plugins/edit-textarea.php
index 5dbe31e6..6328e6bb 100644
--- a/plugins/edit-textarea.php
+++ b/plugins/edit-textarea.php
@@ -10,7 +10,7 @@ class AdminerEditTextarea {
function editInput($table, $field, $attrs, $value) {
if (preg_match('~char~', $field["type"])) {
- return "';
+ return "';
}
}