[ISSUE #6749] fix the batch delete has no permission problem. (#6754)

This commit is contained in:
brotherlu-xcq 2021-08-27 09:41:39 +08:00 committed by GitHub
parent d2267d7bf3
commit 05b0116b1b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -611,7 +611,7 @@ class ConfigurationManagement extends React.Component {
onOk: () => { onOk: () => {
const url = `v1/cs/configs?delType=ids&ids=${Array.from(configsTableSelected.keys()).join( const url = `v1/cs/configs?delType=ids&ids=${Array.from(configsTableSelected.keys()).join(
',' ','
)}`; )}&tenant=` + self.state.nownamespace_id;
request({ request({
url, url,
type: 'delete', type: 'delete',

File diff suppressed because one or more lines are too long