Skip to content

Commit

Permalink
CB-5667 fix: node rename behavior
Browse files Browse the repository at this point in the history
  • Loading branch information
Wroud committed Sep 18, 2024
1 parent 7b48f02 commit 979dc0c
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -275,9 +275,10 @@ export class NavTreeResource extends CachedMapResource<string, string[], Record<
parts.splice(parts.length - 1, 1, name);
const path = parts.join('/');

this.markTreeOutdated(parentId);
this.markOutdated(parentId);
this.markLoaded(node.id);
this.onDataOutdated.execute(parentId);

return path;
} finally {
this.markLoading(node.id, false);
Expand Down

0 comments on commit 979dc0c

Please sign in to comment.