From ff427b83a28e63ae715e7dd727ceafd770e0a8bd Mon Sep 17 00:00:00 2001 From: James Nuanez Date: Tue, 21 Apr 2020 15:55:11 -0700 Subject: [PATCH] Adjust error message for duplicate SIP gateways --- src/components/forms/SipTrunkForm.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/forms/SipTrunkForm.js b/src/components/forms/SipTrunkForm.js index bfdefff..4b28f45 100644 --- a/src/components/forms/SipTrunkForm.js +++ b/src/components/forms/SipTrunkForm.js @@ -312,7 +312,7 @@ const SipTrunkForm = props => { if (!gateway.ip) return; if (type === 'invalid') return; if (gateway.ip === otherGateway.ip && gateway.port === otherGateway.port) { - errorMessages.push('Each row must have a unique IP/Port combination. Please delete the duplicate row.'); + errorMessages.push('Each SIP gateway must have a unique IP address.'); updateSipGateways(null, i, 'invalidIp'); updateSipGateways(null, i, 'invalidPort'); updateSipGateways(null, j, 'invalidIp');