-
Notifications
You must be signed in to change notification settings - Fork 90
Open
Description
Hi there, great library! It'd be nice if I could add some custom formatting/HTML when the components are in display mode.
For example, next to the username, I would want to display a user icon, but not in editing mode.
<inline-editor type="text" [(ngModel)]="account.username">
<i class="fa fa-user"></i>
{{ account.userName }}
</inline-editor>
Caballerog