You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After setting a duplex port, we need to cease it and then re-create it to change the duplex port. It would be useful to be able to edit this.
Something like altering the logic in store() to the following plus adding code to handle the change.
// display the duplex port if set or the list of all duplex ports available$partnerPorts = D2EM::getRepository( PatchPanelPort::class )->getPatchPanelPortAvailableForDuplex( $ppp->getPatchPanel()->getId(), $ppp->getId() );
if( $ppp->hasSlavePort() ) {
$partnerPorts = array_merge( [ $ppp->getDuplexSlavePortId() => $ppp->getDuplexSlavePortName() ], $partnerPorts );
}
The text was updated successfully, but these errors were encountered:
After setting a duplex port, we need to cease it and then re-create it to change the duplex port. It would be useful to be able to edit this.
Something like altering the logic in
store()
to the following plus adding code to handle the change.The text was updated successfully, but these errors were encountered: