Apply suggestion from @CommanderStorm

This commit is contained in:
Frank Elsinga 2026-01-18 19:45:50 +01:00 committed by GitHub
parent 392c182735
commit 049603f71b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -400,8 +400,8 @@ export default {
* @param {string} msg Message to show
* @returns {void}
*/
toastWarning(msg) {
toast.warning(this.$t(msg));
toastWarning(msg, ...args) {
toast.warning(this.$t(msg, ...args));
},
/**