canModifyCI change model attribute check has typo and will affect modification when transitioning from initial stateDescriptioncanModifyCI change model attribute check has typo and will affect modification when transitioning from initial stateSteps to Reproduce canModifyCI change model attribute check has typo and will affect modification when transitioning from initial stateWorkaroundModify script include: ChangeRequest sysId: 59a59f63d733120060faef637e6103ad Adding function: canModifyCI: function(checkTransaction) { var transactionState = checkTransaction ? this.getTransactionChangeState() : null; var api = this._getAPI(); if (api.canModifyCI) return api.canModifyCI(transactionState); // Default, to preserve existing behaviour, is to allow changes in the initial state var wasInitialState = false; if (checkTransaction) wasInitialState = this.getInitialState() === transactionState; return this.isInitialState() || wasInitialState; },Related Problem: PRB1827180