mirror of
https://github.com/usebruno/bruno.git
synced 2024-11-21 15:33:11 +01:00
update request draft when there is no sequence change
This commit is contained in:
parent
f43775e245
commit
18fc31d23c
@ -754,6 +754,9 @@ export const deleteUidsInItem = (item) => {
|
||||
};
|
||||
|
||||
export const areItemsTheSameExceptSeqUpdate = (_item1, _item2) => {
|
||||
// handle case when there is no sequence update
|
||||
if (_item1.seq === _item2.seq) return false
|
||||
|
||||
let item1 = cloneDeep(_item1);
|
||||
let item2 = cloneDeep(_item2);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user