[Sprint/ModestMonkey](feat): Added edit functionality to profile sidebar #1133
Closing #1133
To test, visit the sandbox, log in, go to your channel, edit your profile sidebar, edit the name
2/3 threads resolved
added MR::Awaiting Review Squad::Green scoped labels
- Resolved by Ben Hayward
added 3 commits
- f36d8ba6...d69d2bd0 - 2 commits from branch
master
- b37f4a54 - Merge branch 'master' of gitlab.com:minds/front into feat/edit-name-sidebar-262
- f36d8ba6...d69d2bd0 - 2 commits from branch
resolved all threads
- Resolved by Ben Hayward
resolved all threads
5 5 (added)="upload_avatar($event)" 6 6 ></minds-avatar> 7 7 <div class="m-channel--name"> 8 <h2>{{user.name}}</h2> 8 <h2 [hidden]="editing">{{user.name}}</h2> 9 <div 10 class="minds-editable-container mdl-card__supporting-text m-channel--name--editor" 11 *ngIf="editing && isOwner()" 12 > 13 <input 14 [autoGrow] 15 class="mdl-textfield__input" 16 type="text" - Developer
We need to implement/fix the change detection so the profile card on the newsfeed changes. Right now, you need to reload the page to get the name change to propagate.