Skip to content

Commit 53cd6e6

Browse files
committed
showing cloned rows for missing required field error
1 parent 2a4479a commit 53cd6e6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/dashboard/Data/Browser/Browser.react.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1025,8 +1025,8 @@ class Browser extends DashboardView {
10251025
}
10261026
});
10271027
} catch (error) {
1028-
//for duplicate error or password missing error
1029-
if (error.code === 137 || error.code === 201) {
1028+
//for duplicate, username missing, password missing or required field missing errors
1029+
if (error.code === 137 || error.code === 201 || error.code === 200 || error.code === 142) {
10301030
let failedSaveObj = [];
10311031
let savedObjects = [];
10321032
toClone.forEach(cloneObj => {

0 commit comments

Comments
 (0)