1
0
mirror of https://github.com/pierre42100/ComunicWeb synced 2025-07-14 15:08:09 +00:00

Fix bad call

This commit is contained in:
2020-05-17 19:22:59 +02:00
parent cc0d405de8
commit 4f417e1299

@ -319,7 +319,7 @@ async function showInputTextDialog(title, message, defaultValue = "") {
title,
message,
defaultValue,
(msg) => msg === false ? rej : res(msg)
(msg) => msg === false ? rej() : res(msg)
)
)
}