[Sprint/HipsterHedgehog] (feat): ability to copy and paste images into posts and comments
closes minds#553
2/3 discussions resolved
- Resolved by Marcelo Rivera
- Last updated by Marcelo Rivera
134 146 this.triedToPost = false; 135 file.value = null; 136 147 this.detectChanges(); 137 148 }) 138 149 .catch(e => { 139 150 console.error(e); 140 151 this.canPost = true; 141 152 this.triedToPost = false; 142 file.value = null; 143 153 this.detectChanges(); 144 154 }); 145 146 this.detectChanges(); 147 155 } 148 156 149 157 removeAttachment(file: HTMLInputElement) { - Maintainer
Can we name this something more specific like ```fileElement``? My dumb brain keeps reading that as an input stream
changed this line in version 2 of the diff
- Resolved by Brian Hatchet