logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe
commit: 0c8b1eb577f11d33c27f28afdfdac807b7e27845
parent: cfa3f55221733664004deb14f70764be4752b7bb
Author: Neetshin <neetshin@neetsh.in>
Date:   Tue, 12 Dec 2017 18:57:22 +0000

Make detect empty string before assign image description (#5994)

* Add aria-autocomplete='list' in Textaria

ref: https://www.w3.org/TR/wai-aria-1.1/#aria-autocomplete

* Make detect empty string brefore assign upload description

Diffstat:

Mapp/javascript/mastodon/features/compose/components/upload.js2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app/javascript/mastodon/features/compose/components/upload.js b/app/javascript/mastodon/features/compose/components/upload.js @@ -62,7 +62,7 @@ export default class Upload extends ImmutablePureComponent { render () { const { intl, media } = this.props; const active = this.state.hovered || this.state.focused; - const description = this.state.dirtyDescription || media.get('description') || ''; + const description = this.state.dirtyDescription || (this.state.dirtyDescription !== '' && media.get('description')) || ''; return ( <div className='compose-form__upload' onMouseEnter={this.handleMouseEnter} onMouseLeave={this.handleMouseLeave}>