mirror of
https://github.com/zadam/trilium.git
synced 2025-03-01 14:22:32 +01:00
increase toast size limit
This commit is contained in:
parent
4633c68a0c
commit
b093569ec5
@ -8,8 +8,8 @@ async function syncNow() {
|
|||||||
toastService.showMessage("Sync finished successfully.");
|
toastService.showMessage("Sync finished successfully.");
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
if (result.message.length > 100) {
|
if (result.message.length > 200) {
|
||||||
result.message = result.message.substr(0, 100);
|
result.message = result.message.substr(0, 200);
|
||||||
}
|
}
|
||||||
|
|
||||||
toastService.showError("Sync failed: " + result.message);
|
toastService.showError("Sync failed: " + result.message);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user