Replies: 2 comments 3 replies
-
Hey @Stepness! I'm here to assist you with any bugs, questions, or contributions while you wait for a human maintainer. Let's tackle this together! Yes, there is existing functionality to support bulk deletion of data scopes in the UI for Apache DevLake. The code includes a Here is a relevant code snippet: <Table
rowKey="id"
size="middle"
loading={!ready}
columns={[
// ... other columns
]}
dataSource={dataSource}
pagination={{
current: page,
pageSize,
total,
onChange: setPage,
onShowSizeChange: (_, size) => {
setPage(1);
setPageSize(size);
},
}}
rowSelection={{
selectedRowKeys: scopeIds,
onChange: (selectedRowKeys) => setScopeIds(selectedRowKeys as ID[]),
}}
/> The If you don't see this option in your UI, it might be worth checking if you are on the latest version of Apache DevLake or if there are any specific permissions required to access this feature. |
Beta Was this translation helpful? Give feedback.
-
Not that I know of. All scope configs of the connection must be deleted one by one first. |
Beta Was this translation helpful? Give feedback.
-
Currently Id like to delete a connection, but Im blocked because I have to delete all associated data scopes first.
Is there a button to delete them all in one go? Because I can't find it
I saw in previous discussion that an implementation to delete single scopes has been done in #5558
Beta Was this translation helpful? Give feedback.
All reactions