diff --git a/studio/src/main/resources/static/js/studio-utils.js b/studio/src/main/resources/static/js/studio-utils.js index 62c537e5f1..7f5b933bff 100644 --- a/studio/src/main/resources/static/js/studio-utils.js +++ b/studio/src/main/resources/static/js/studio-utils.js @@ -47,14 +47,14 @@ function globalNotify(title, message, type) { { title: "" + title + "", message: message, - z_index: 100000, - placement: { - from: "bottom", - align: "right", - }, }, { type: type, + z_index: 100000, + placement: { + from: "top", + align: "center", + }, }, ); } @@ -248,4 +248,4 @@ function globalFormatSpace(value) { if (value > 1000000) return globalFormatDouble(value / 1000000) + "MB"; if (value > 1000) return globalFormatDouble(value / 1000) + "KB"; return value; -} +} \ No newline at end of file