From 3f6c2efb8d2069948f9507b70a2360a5717a15ee Mon Sep 17 00:00:00 2001 From: Oguz Bektas Date: Wed, 10 Mar 2021 14:04:02 +0100 Subject: [PATCH] ui: fix typo in options Signed-off-by: Oguz Bektas --- www/datastore/OptionView.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/www/datastore/OptionView.js b/www/datastore/OptionView.js index 1ea61f67..723730fd 100644 --- a/www/datastore/OptionView.js +++ b/www/datastore/OptionView.js @@ -42,7 +42,7 @@ Ext.define('PBS.Datastore.Options', { rows: { "notify": { required: true, - header: gettext('Notfiy'), + header: gettext('Notify'), renderer: (value) => { let notify = PBS.Utils.parsePropertyString(value); let res = []; @@ -59,7 +59,7 @@ Ext.define('PBS.Datastore.Options', { "notify-user": { required: true, defaultValue: 'root@pam', - header: gettext('Notfiy User'), + header: gettext('Notify User'), editor: { xtype: 'pbsNotifyOptionEdit', },