Issues
- UI: Document UI ComponentsSTRIPES-372Resolved issue: STRIPES-372John Coburn
- Warning: Unknown prop `columnMapping` on <table> tag. Remove this prop from the element.STRIPES-292Resolved issue: STRIPES-292Mike Taylor
- New User and User Edit Button Displaying When They Shouldn'tSTRIPES-290Resolved issue: STRIPES-290Mike Taylor
- The UserPermissions in ui-users should be refactored as an envelope component around a new component: RenderPermissionsSTRIPES-289Resolved issue: STRIPES-289Jeremy Huff
- Users module: pane widths change when stepping through usersSTRIPES-288Resolved issue: STRIPES-288Mike Taylor
- it's possible to save a user with an already used ID if "update user" is clicked immediatelySTRIPES-285Resolved issue: STRIPES-285Niels Erik Nielsen
- Remove the "viewUserProps" property from <UserPermissions>STRIPES-280Resolved issue: STRIPES-280Mike Taylor
- Pull availablePermissions down into <UserPermissions>STRIPES-279Resolved issue: STRIPES-279Mike Taylor
- Permissions: Getting 403 Fetch Errors When (I Think) I Shouldn'tSTRIPES-277Resolved issue: STRIPES-277Mike Taylor
- allow for labels to be different from sortkeysSTRIPES-275Resolved issue: STRIPES-275John Coburn
- Don't Display Permissions in Current User MenuSTRIPES-271Resolved issue: STRIPES-271Mike Taylor
- Permissions: Getting Fetch Errors When Logging In With Create User PermissionSTRIPES-270Resolved issue: STRIPES-270
- Get the stripes object into settingsSTRIPES-268Resolved issue: STRIPES-268Mike Taylor
- Wire settings into UISTRIPES-267Resolved issue: STRIPES-267Mike Taylor
- Clean up over-complex component invocationsSTRIPES-266Resolved issue: STRIPES-266Mike Taylor
- Bad intermodule interactions: Okapi-Console breaks other UI modulesSTRIPES-264Resolved issue: STRIPES-264Mike Taylor
- research react-virtualized in support of scroll/pagingSTRIPES-263Resolved issue: STRIPES-263John Coburn
- support paging in stripes-connectSTRIPES-262Resolved issue: STRIPES-262Jason Skomorowski
- no password can be specified for new usersSTRIPES-261Resolved issue: STRIPES-261Mike Taylor
- Rework provision of stripes-core facilities to modulesSTRIPES-259Resolved issue: STRIPES-259Mike Taylor
- Work on the Stripes Module Developer's GuideSTRIPES-254Resolved issue: STRIPES-254Mike Taylor
- When a new record is created, the component should receive props describing itSTRIPES-211Resolved issue: STRIPES-211Jason Skomorowski
- Consider developing against new black-box with inventory moduleSTRIPES-174Resolved issue: STRIPES-174Mike Taylor
- Factor common code out of Users and Items UI modulesSTRIPES-172Resolved issue: STRIPES-172Mike Taylor
- Write "Thinking in Stripes"STRIPES-103Resolved issue: STRIPES-103Mike Taylor
- Write a section of the Developer's Guide about parent-child component relationshipsSTCOR-1Resolved issue: STCOR-1Mike Taylor
- Split PostgresClientRMB-10Julian Ladisch
- tenant api - unit tests and code cleanupRMB-3Resolved issue: RMB-3
- Okapi should abort operation if cluster-host is invalidOKAPI-320Resolved issue: OKAPI-320Adam Dickmeiss
- Null diagnostic when Docker can not be reachedOKAPI-299Resolved issue: OKAPI-299Adam Dickmeiss
- HTTP connection hangs after throwing error (Keep-alive)OKAPI-298Resolved issue: OKAPI-298Adam Dickmeiss
- Garbage characters for docker loggingOKAPI-291Resolved issue: OKAPI-291Adam Dickmeiss
- Make RoutingEntry type optional and default to request-responseOKAPI-288Resolved issue: OKAPI-288Adam Dickmeiss
- Handlers/filters and PhasesOKAPI-284Resolved issue: OKAPI-284Adam Dickmeiss
- Add ability to pull Docker image from a remote respositoryOKAPI-283Resolved issue: OKAPI-283Adam Dickmeiss
- Describe permissions for inventory modulesMETADATA-56Resolved issue: METADATA-56Marc Johnson
- Adapt inventory and inventory storage module descriptors to use Okapi Path FilteringMETADATA-52Resolved issue: METADATA-52Marc Johnson
- Add material type-item associationsLIBAPP-169Resolved issue: LIBAPP-169Matt Connolly
- Check In Should be ImmediateLIBAPP-167Resolved issue: LIBAPP-167Niels Erik Nielsen
- Check Out Should be ImmediateLIBAPP-166Resolved issue: LIBAPP-166Niels Erik Nielsen
- Manage patron groups association on the user screenLIBAPP-163Resolved issue: LIBAPP-163Matt Connolly
- Permissions: Can View Permissions Assigned to UsersLIBAPP-147Resolved issue: LIBAPP-147Mike Taylor
- CRUD Material TypesLIBAPP-139Resolved issue: LIBAPP-139Matt Connolly
- Validate Last Name and User ID (Username)LIBAPP-114Resolved issue: LIBAPP-114Niels Erik Nielsen
- HOLD: UI: Toast NotificationLIBAPP-92Resolved issue: LIBAPP-92John Coburn
- CRUD Permission Sets v1LIBAPP-83Resolved issue: LIBAPP-83Cate Boerema
- UI: Collapsible Detail PaneLIBAPP-80Resolved issue: LIBAPP-80John Coburn
- mod-users runtime failureFOLIO-532Resolved issue: FOLIO-532Julian Ladisch
- CQL translator: use IS NOT TRUE instead of NOTFOLIO-530Resolved issue: FOLIO-530Julian Ladisch
- extension uuid-ossp missing in CI's PostgresFOLIO-528Resolved issue: FOLIO-528Julian Ladisch
Entering or changing the search term clears filters
Description
CSP Request Details
CSP Rejection Details
Potential Workaround
blocks
Checklist
hideTestRail: Results
Details
Assignee
Mike TaylorMike TaylorReporter
Mike TaylorMike TaylorLabels
Priority
P2TestRail: Cases
Open TestRail: CasesTestRail: Runs
Open TestRail: Runs
Details
Details
Assignee
Reporter
Labels
Priority
TestRail: Cases
TestRail: Runs
Activity
Mike TaylorMarch 17, 2017 at 12:50 PM
Updated ui-users and ui-items to require v0.3 of stripes-components.
Mike TaylorMarch 17, 2017 at 12:48 PM
Fixed in v0.3.0 of stripes-components
: https://github.com/folio-org/stripes-components/blob/v0.3.0/CHANGELOG.md
Mike TaylorMarch 17, 2017 at 12:37 PM
Right. The problem is in line 3 of transitionToParams.js
:
const allParams = Object.assign({}, location.query, params);
Under react-router 4.0, location.query
is undefined; but Object.assign()
doesn't complain about that, as one might expect, it simply ploughs on.
js> Object.assign({}, undefined, { foo:1 })
Object {foo: 1}
It should be easy enough to fix.
Mike TaylorMarch 17, 2017 at 12:26 PMEdited
Those diffs look fine. I think the problem is, rather, that the transitionToParams
utility function silently fails to recover the other parts of the query string, rather than either finding them or blowing up because they're not there.
Mike TaylorMarch 17, 2017 at 12:04 PM
The problem is presumably within this sequence of the three commits that Jason made last night:
https://github.com/folio-org/ui-users/compare/6f535f91530e4b2d8343d71a705824777a7e9480...88f8b9350a71e881197dd3b600122bb0811fc318
This is happened since the switch to react-router v4.0 (STRIPES-173: Compatibility with current react-router versionsClosed).
It happens in both ui-users and ui-items.
The filters still appear checked in the UI, but do not contribute to the CQL query that is generated.