From 2c275e7302443214b0ffefeb599a2eb756c4d395 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20Zi=C3=B3=C5=82kowski?= Date: Fri, 2 Sep 2022 16:10:12 +0200 Subject: [PATCH] IT-4794 use resize instead of float --- src/ui/TextareaView.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/ui/TextareaView.js b/src/ui/TextareaView.js index 3d0677e..86b6a7a 100644 --- a/src/ui/TextareaView.js +++ b/src/ui/TextareaView.js @@ -9,7 +9,8 @@ export default class TextareaView extends InputView { attributes: { ...this.template.attributes, style: { - float: 'left' + resize: 'both', + overflow: 'auto' } } } );