0
antonis created
Hi,
Iam using angular and aspnet core. Trying to change the position of toaster to bottom but it does no work. still shows top right
abp.notify.warn("Test message", "title", {
position: "bottom-start"
})
3 Answer(s)
-
0
I can't reproduce the problem you encountered. What is your zero version?
And angular notify using sweetalert2 -
0
I am using aspnetzero 6.5.0
-
0
hi @antonis
Try modifying the
angular/src/assets/abp-web-resources/abp.notify.js
filevar combinedOptions = Object.assign(defaultOptions, options);
Change into
var combinedOptions = Object.assign({}, defaultOptions, options);