diff options
author | Noiob <8197071+noiob@users.noreply.github.com> | 2021-04-04 21:42:30 +0200 |
---|---|---|
committer | Starfall <us@starfall.systems> | 2021-04-11 12:17:56 -0500 |
commit | 8cf1cbadf7a88be1797daab8bcf15be7a5c7130b (patch) | |
tree | 82b23b6f5347c379ed2d14253d8451003bb7cf1e /app/javascript/flavours/glitch/features/compose | |
parent | aeb0f34cefd88caaaa51e8250e1f6ddde280c4bb (diff) |
Remove superfluous toot length check
Diffstat (limited to 'app/javascript/flavours/glitch/features/compose')
-rw-r--r-- | app/javascript/flavours/glitch/features/compose/components/publisher.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/javascript/flavours/glitch/features/compose/components/publisher.js b/app/javascript/flavours/glitch/features/compose/components/publisher.js index 97890f40d..1531dcaa9 100644 --- a/app/javascript/flavours/glitch/features/compose/components/publisher.js +++ b/app/javascript/flavours/glitch/features/compose/components/publisher.js @@ -47,7 +47,7 @@ class Publisher extends ImmutablePureComponent { const diff = maxChars - length(countText || ''); const computedClass = classNames('composer--publisher', { - disabled: disabled || diff < 0, + disabled: disabled, over: diff < 0, }); @@ -56,7 +56,7 @@ class Publisher extends ImmutablePureComponent { {sideArm && sideArm !== 'none' ? ( <Button className='side_arm' - disabled={disabled || diff < 0} + disabled={disabled} onClick={onSecondarySubmit} style={{ padding: null }} text={ @@ -110,7 +110,7 @@ class Publisher extends ImmutablePureComponent { }()} title={`${intl.formatMessage(messages.publish)}: ${intl.formatMessage({ id: `privacy.${privacy}.short` })}`} onClick={this.handleSubmit} - disabled={disabled || diff < 0} + disabled={disabled} /> </div> ); |