From dc7caf4762e237ee1467f8f8f5ac3765d0da0824 Mon Sep 17 00:00:00 2001 From: rug Date: Thu, 29 Jan 2026 15:35:20 +0100 Subject: [PATCH] Locking to attribute value --- core/src/components/textarea/textarea.ionic.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/components/textarea/textarea.ionic.scss b/core/src/components/textarea/textarea.ionic.scss index a24b054325..dc1cb16bdc 100644 --- a/core/src/components/textarea/textarea.ionic.scss +++ b/core/src/components/textarea/textarea.ionic.scss @@ -84,13 +84,13 @@ // ---------------------------------------------------------------- // The height should be auto only when auto-grow is enabled. -:host([auto-grow]) .textarea-wrapper-inner { +:host([auto-grow=true]) .textarea-wrapper-inner { height: auto; } // The min and max height should be inherited if auto-grow is enabled. // This allows the textarea to grow and shrink as needed. -:host([auto-grow]) .native-wrapper { +:host([auto-grow=true]) .native-wrapper { min-height: inherit; max-height: inherit; }