Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -277,6 +277,7 @@ export const ActionsConnectorsList: React.FunctionComponent = () => {
onSelectionChange(updatedSelectedItemsList: ActionConnectorTableItem[]) {
setSelectedItems(updatedSelectedItemsList);
},
selectable: ({ isPreconfigured }: ActionConnectorTableItem) => !isPreconfigured,
}
: undefined
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -189,6 +189,9 @@ export default ({ getPageObjects, getService }: FtrProviderContext) => {

expect(await testSubjects.exists('deleteConnector')).to.be(false);
expect(await testSubjects.exists('preConfiguredTitleMessage')).to.be(true);

const checkboxSelectRow = await testSubjects.find('checkboxSelectRow-my-server-log');
expect(await checkboxSelectRow.getAttribute('disabled')).to.be('true');
});

it('should not be able to edit a preconfigured connector', async () => {
Expand Down