node: repos: fix reversed validation on configured

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
Thomas Lamprecht 2021-07-01 10:49:25 +02:00
parent d7aeb02f3e
commit 58b7186065

View File

@ -74,7 +74,7 @@ Ext.define('Proxmox.window.APTRepositoryAdd', {
return false; return false;
} }
if (!info.status) { if (info.status) {
return Ext.String.format(gettext('{0} is already configured'), renderedValue); return Ext.String.format(gettext('{0} is already configured'), renderedValue);
} }
return valid; return valid;