diff --git a/src/app/features/order/features/my-order/components/routables/my-order-list/order-my-order-list.routable.ts b/src/app/features/order/features/my-order/components/routables/my-order-list/order-my-order-list.routable.ts index 17556f35f332f2c9a7db130b68e8c4abc04a3e31..36df323779c8751c7ab6e8cf8fbae469e6d9be1a 100644 --- a/src/app/features/order/features/my-order/components/routables/my-order-list/order-my-order-list.routable.ts +++ b/src/app/features/order/features/my-order/components/routables/my-order-list/order-my-order-list.routable.ts @@ -124,7 +124,7 @@ export class OrderMyOrderListRoutable extends SharedAbstractListRoutable<Order, private updateQueryParameterWithCurrentUser(queryParameters: QueryParameters): QueryParameters | undefined { queryParameters = ObjectUtil.clone(queryParameters); queryParameters.search = ObjectUtil.clone(queryParameters.search); - const userTargetedUid = this._store.selectSnapshot(AppState.currentUser).targetedUid; + const userTargetedUid = this._store.selectSnapshot(AppState.currentUser).externalUid; MappingObjectUtil.set(queryParameters.search.searchItems, this.KEY_CREATOR, userTargetedUid); return queryParameters; }