()
| 241 | await onCopy(ModuleNameEnum.CEHEADER); |
| 242 | } |
| 243 | async function onDuplicate() { |
| 244 | if (_parentTableSelection) { |
| 245 | const refresh = duplicatePosition( |
| 246 | _getModuleName(), |
| 247 | _parentTableSelection, |
| 248 | _getListofSelectedRow() |
| 249 | ); |
| 250 | if (refresh) { |
| 251 | await _updateTableContent(); |
| 252 | } |
| 253 | } |
| 254 | } |
| 255 | function onCopyList() { |
| 256 | return [ |
| 257 | ...(_getModuleName() === ModuleNameEnum.JOB |
nothing calls this directly
no test coverage detected