src/views/issue/issue-reducers.ts [21:34]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  ...createAttachmentReducer(attachmentTypes),
  ...createCommandDialogReducers(commandDialogNamespace),
  [ON_NAVIGATE_BACK]: (
    state: IssueState,
    action: {
      closingView: {
        routeName: string;
        params: {
          issueId?: string;
        };
      };
    },
  ): IssueState => {
    if (action.closingView.routeName === routeMap.Issue) {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/views/issue/modal/issue.modal-reducers.ts [23:36]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ...createAttachmentReducer(attachmentTypes),
    ...createCommandDialogReducers(commandDialogNamespace),
    [ON_NAVIGATE_BACK]: (
      state: IssueState,
      action: {
        closingView: {
          routeName: string;
          params: {
            issueId?: string;
          };
        };
      },
    ): IssueState => {
      if (action.closingView.routeName === routeMap.Issue) {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



