new patch for v4.1.7
This commit is contained in:
parent
a572c58d13
commit
ecc5fc6c6e
1 changed files with 16 additions and 16 deletions
|
@ -1,18 +1,18 @@
|
||||||
From d40e88f820e578b5e6a51bf387da9b43ae6ebbe2 Mon Sep 17 00:00:00 2001
|
From 3bfddc5327166954b1dfb0f3587612246fc81477 Mon Sep 17 00:00:00 2001
|
||||||
From: Falko Zurell <falko.zurell@here.com>
|
From: Falko Zurell <falko.zurell@here.com>
|
||||||
Date: Wed, 13 Sep 2023 11:30:57 +0200
|
Date: Wed, 13 Sep 2023 19:09:55 +0200
|
||||||
Subject: [PATCH] increase character limit from 500 to 5000
|
Subject: [PATCH] increase character limit to 5000
|
||||||
|
|
||||||
---
|
---
|
||||||
.../mastodon/features/compose/components/compose_form.jsx | 4 ++--
|
.../mastodon/features/compose/components/compose_form.js | 4 ++--
|
||||||
app/validators/status_length_validator.rb | 2 +-
|
app/validators/status_length_validator.rb | 2 +-
|
||||||
2 files changed, 3 insertions(+), 3 deletions(-)
|
2 files changed, 3 insertions(+), 3 deletions(-)
|
||||||
|
|
||||||
diff --git a/app/javascript/mastodon/features/compose/components/compose_form.jsx b/app/javascript/mastodon/features/compose/components/compose_form.jsx
|
diff --git a/app/javascript/mastodon/features/compose/components/compose_form.js b/app/javascript/mastodon/features/compose/components/compose_form.js
|
||||||
index 9222b2dc8..962310a28 100644
|
index e641d59f4..9b6f84fa1 100644
|
||||||
--- a/app/javascript/mastodon/features/compose/components/compose_form.jsx
|
--- a/app/javascript/mastodon/features/compose/components/compose_form.js
|
||||||
+++ b/app/javascript/mastodon/features/compose/components/compose_form.jsx
|
+++ b/app/javascript/mastodon/features/compose/components/compose_form.js
|
||||||
@@ -100,7 +100,7 @@ class ComposeForm extends ImmutablePureComponent {
|
@@ -90,7 +90,7 @@ class ComposeForm extends ImmutablePureComponent {
|
||||||
const fulltext = this.getFulltextForCharacterCounting();
|
const fulltext = this.getFulltextForCharacterCounting();
|
||||||
const isOnlyWhitespace = fulltext.length !== 0 && fulltext.trim().length === 0;
|
const isOnlyWhitespace = fulltext.length !== 0 && fulltext.trim().length === 0;
|
||||||
|
|
||||||
|
@ -21,17 +21,17 @@ index 9222b2dc8..962310a28 100644
|
||||||
};
|
};
|
||||||
|
|
||||||
handleSubmit = (e) => {
|
handleSubmit = (e) => {
|
||||||
@@ -297,7 +297,7 @@ class ComposeForm extends ImmutablePureComponent {
|
@@ -280,7 +280,7 @@ class ComposeForm extends ImmutablePureComponent {
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className='character-counter__wrapper'>
|
<div className='character-counter__wrapper'>
|
||||||
- <CharacterCounter max={500} text={this.getFulltextForCharacterCounting()} />
|
- <CharacterCounter max={500} text={this.getFulltextForCharacterCounting()} />
|
||||||
+ <CharacterCounter max={5000} text={this.getFulltextForCharacterCounting()} />
|
+ <CharacterCounter max={5000} text={this.getFulltextForCharacterCounting()} />
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
diff --git a/app/validators/status_length_validator.rb b/app/validators/status_length_validator.rb
|
diff --git a/app/validators/status_length_validator.rb b/app/validators/status_length_validator.rb
|
||||||
index dc841ded3..9cb1ec94b 100644
|
index e107912b7..a3cbe5123 100644
|
||||||
--- a/app/validators/status_length_validator.rb
|
--- a/app/validators/status_length_validator.rb
|
||||||
+++ b/app/validators/status_length_validator.rb
|
+++ b/app/validators/status_length_validator.rb
|
||||||
@@ -1,7 +1,7 @@
|
@@ -1,7 +1,7 @@
|
||||||
|
|
Loading…
Reference in a new issue