Skip to content

Commit

Permalink
#EXUI-2641: the empty book name will be prepopulated with 'New Bookmark'
Browse files Browse the repository at this point in the history
  • Loading branch information
MunishSharmaHMCTS committed Jan 6, 2025
1 parent 7f7ffab commit a5c328b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ export class BookmarksComponent implements OnInit, OnDestroy, OnChanges {
this.store.pipe(select(bookmarksSelectors.getBookmarkInfo), take(1))
.subscribe((bookmarkInfo) => {
this.store.dispatch(new CreateBookmark({
...bookmarkInfo, name: '', id: uuid()
...bookmarkInfo, name: 'New Bookmark', id: uuid()
} as any));
});
}
Expand Down

0 comments on commit a5c328b

Please sign in to comment.