Decrease error modal size

This commit is contained in:
grandeljay 2022-06-16 11:03:46 +02:00
parent ea5bae3f74
commit c0dd4b2de0

View file

@ -63,7 +63,7 @@ $(function() {
.modal({ .modal({
title : text.modal_failure_title, title : text.modal_failure_title,
content : content, content : content,
class : '', class : 'small',
actions : [ actions : [
{ {
text : text.modal_failure_approve, text : text.modal_failure_approve,
@ -82,7 +82,7 @@ $(function() {
.modal({ .modal({
title : text.modal_error_title, title : text.modal_error_title,
content : response, content : response,
class : '', class : 'small',
actions : [ actions : [
{ {
text : text.modal_failure_approve, text : text.modal_failure_approve,
@ -252,7 +252,7 @@ function showError(error) {
.modal({ .modal({
title : 'Error', title : 'Error',
content : error, content : error,
class : '', class : 'small',
actions : [ actions : [
{ {
text : text.modal_failure_approve, text : text.modal_failure_approve,
@ -271,7 +271,7 @@ function showWarning(warning) {
.modal({ .modal({
title : 'Warning', title : 'Warning',
content : warning, content : warning,
class : '', class : 'small',
actions : [ actions : [
{ {
text : text.modal_warning_approve, text : text.modal_warning_approve,