Browse Source
Merge pull request #5779 from abpframework/feature/toaster-message-inner-html
feat: inner html added to toaster messafe
pull/5786/head
Bunyamin Coskuner
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
4 additions and
3 deletions
-
npm/ng-packs/packages/theme-shared/src/lib/components/toast/toast.component.html
|
|
|
@ -9,8 +9,9 @@ |
|
|
|
<div class="abp-toast-title"> |
|
|
|
{{ toast.title | abpLocalization: toast.options?.titleLocalizationParams }} |
|
|
|
</div> |
|
|
|
<p class="abp-toast-message"> |
|
|
|
{{ toast.message | abpLocalization: toast.options?.messageLocalizationParams }} |
|
|
|
</p> |
|
|
|
<p |
|
|
|
class="abp-toast-message" |
|
|
|
[innerHTML]="toast.message | abpLocalization: toast.options?.messageLocalizationParams" |
|
|
|
></p> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
|