From 62f99f92484fb10262d755eb6c0102f919b9ae24 Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Mon, 15 Jun 2020 16:43:18 +0200 Subject: [PATCH] Make the confirm dialog modal by default Signed-off-by: Joas Schilling --- core/src/OC/dialogs.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/OC/dialogs.js b/core/src/OC/dialogs.js index 9d724b069ae..b54ca7434c0 100644 --- a/core/src/OC/dialogs.js +++ b/core/src/OC/dialogs.js @@ -108,7 +108,7 @@ const Dialogs = { 'none', buttons, callback, - modal + modal === undefined ? true : modal ) }, /** -- 2.39.5