(msg, autoHideDuration = AUTO_HIDE_DURATION)
| 96 | // text from an untrusted source (PostgreSQL server, driver, remote API, |
| 97 | // user input). Newlines are preserved; no HTML is interpreted. |
| 98 | successText(msg, autoHideDuration = AUTO_HIDE_DURATION) { |
| 99 | this.snackbar.callNotify(msg, MESSAGE_TYPE.SUCCESS, autoHideDuration, {plainText: true}); |
| 100 | } |
| 101 | warningText(msg, autoHideDuration = AUTO_HIDE_DURATION) { |
| 102 | this.snackbar.callNotify(msg, MESSAGE_TYPE.WARNING, autoHideDuration, {plainText: true}); |
| 103 | } |
no test coverage detected