Moved tabletop characters to left side of the screen

This commit is contained in:
Thaum Rystra
2024-04-12 17:05:20 +02:00
parent 4793b34a55
commit 08640f2bf2
27 changed files with 496 additions and 1370 deletions

View File

@@ -58,7 +58,10 @@ export default {
addTabletop(){
this.addTabletopLoading = true;
insertTabletop.call(error => {
if (error) snackbar(error.message);
if (error) {
console.error(error)
snackbar({ text: error.reason || error.message || error.toString() });
}
this.addTabletopLoading = false;
});
}