You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Clicking the REANA logo in the top-left part of the UI brings the user back to the workflow list page.
However, if the user is already on the workflow list page nothing happens, even if the workflow list is being filtered and/or if the selected page is not the first one. Instead, I would expect the page to be refreshed, any filtering to be removed and to be brought back to the first page of the workflow list.
The text was updated successfully, but these errors were encountered:
Currently, we use local state for search parameters and the page number on the WorkflowList page as shown below:
However, to refresh the page after clicking on the "reana" logo, the best approach is to switch this local state to a global state in Redux since we do not have access to this local state inside the header component. Global state in Redux is also bit tricky because we already have another "WORKFLOW_LIST_REFRESH" action in Redux, which is somewhat misleading in its purpose.
Therefore, I propose combining this task with refactoring the refreshing, pagination, and searching mechanism of the WorkflowList page.
Clicking the REANA logo in the top-left part of the UI brings the user back to the workflow list page.
However, if the user is already on the workflow list page nothing happens, even if the workflow list is being filtered and/or if the selected page is not the first one. Instead, I would expect the page to be refreshed, any filtering to be removed and to be brought back to the first page of the workflow list.
The text was updated successfully, but these errors were encountered: