diff options
author | David Yip <yipdw@member.fsf.org> | 2018-09-29 19:00:06 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-29 19:00:06 -0500 |
commit | 5b43d7bcbf27987642c16fccf213de984c150411 (patch) | |
tree | 054d7c626ba5834d798bf55886867db3149a0dc8 | |
parent | 76b8ae044d7994dc7c906be6a8d853f10afb591b (diff) | |
parent | d3426ed87ab3be29dece3f8d2c22bece9dda32dc (diff) |
Merge pull request #745 from ThibG/glitch-soc/fixes/grey-out-button
Disable the “TOOT” button (and secondary toot button) if the toot text is empty
-rw-r--r-- | app/javascript/flavours/glitch/features/composer/index.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/javascript/flavours/glitch/features/composer/index.js b/app/javascript/flavours/glitch/features/composer/index.js index ff01408e7..c1bd77844 100644 --- a/app/javascript/flavours/glitch/features/composer/index.js +++ b/app/javascript/flavours/glitch/features/composer/index.js @@ -242,7 +242,7 @@ const handlers = { } // Submit disabled: - if (isSubmitting || isUploading || (!!text.length && !text.trim().length && !anyMedia)) { + if (isSubmitting || isUploading || (!text.trim().length && !anyMedia)) { return; } @@ -415,7 +415,7 @@ class Composer extends React.Component { spoilersAlwaysOn, } = this.props; - let disabledButton = isSubmitting || isUploading || (!!text.length && !text.trim().length && !anyMedia); + let disabledButton = isSubmitting || isUploading || (!text.trim().length && !anyMedia); return ( <div className='composer'> |