From 2b4c62eab865dbfb8d2820e2caa7e072886b26ca Mon Sep 17 00:00:00 2001 From: Yuri Kuznetsov Date: Thu, 17 Aug 2023 10:42:16 +0300 Subject: [PATCH] fix --- client/src/views/popup-notification.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/src/views/popup-notification.js b/client/src/views/popup-notification.js index c61b1ca5b4..cafbc29ab0 100644 --- a/client/src/views/popup-notification.js +++ b/client/src/views/popup-notification.js @@ -155,7 +155,7 @@ class PopupNotificationView extends View { * @deprecated Use `resolveConfirm`. */ confirm() { - console.warning(`Method 'confirm' in views/popup-notification is deprecated. Use 'resolveConfirm' instead.`); + console.warn(`Method 'confirm' in views/popup-notification is deprecated. Use 'resolveConfirm' instead.`); this.resolveConfirm(); } @@ -164,7 +164,7 @@ class PopupNotificationView extends View { * @deprecated Use `resolveCancel`. */ cancel() { - console.warning(`Method 'cancel' in views/popup-notification is deprecated. Use 'resolveCancel' instead.`); + console.warn(`Method 'cancel' in views/popup-notification is deprecated. Use 'resolveCancel' instead.`); this.resolveCancel(); }