We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent acc1c22 commit 2a4479aCopy full SHA for 2a4479a
src/dashboard/Data/Browser/Browser.react.js
@@ -1025,7 +1025,8 @@ class Browser extends DashboardView {
1025
}
1026
});
1027
} catch (error) {
1028
- if (error.code === 137) {
+ //for duplicate error or password missing error
1029
+ if (error.code === 137 || error.code === 201) {
1030
let failedSaveObj = [];
1031
let savedObjects = [];
1032
toClone.forEach(cloneObj => {
@@ -1045,7 +1046,6 @@ class Browser extends DashboardView {
1045
1046
this.addEditCloneRows(failedSaveObj);
1047
1048
this.setState({
- selection: {},
1049
showCloneSelectedRowsDialog: false
1050
1051
this.showNote(error.message, true);
0 commit comments