From cfee4297b0c131b3afaeed6cf19f5e012e62a524 Mon Sep 17 00:00:00 2001 From: yann300 Date: Wed, 3 Mar 2021 12:05:58 +0100 Subject: [PATCH] capitalize --- apps/remix-ide/src/app/ui/modal-dialog-custom.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/remix-ide/src/app/ui/modal-dialog-custom.js b/apps/remix-ide/src/app/ui/modal-dialog-custom.js index e681102428..d2b1daba44 100644 --- a/apps/remix-ide/src/app/ui/modal-dialog-custom.js +++ b/apps/remix-ide/src/app/ui/modal-dialog-custom.js @@ -5,7 +5,7 @@ var css = require('./styles/modal-dialog-custom-styles') module.exports = { alert: function (title, text) { if (text) return modal(title, yo`
${text}
`, null, { label: null }) - return modal('alert', yo`
${title}
`, null, { label: null }) + return modal('Alert', yo`
${title}
`, null, { label: null }) }, prompt: function (title, text, inputValue, ok, cancel, focus) { return prompt(title, text, false, inputValue, ok, cancel, focus)