Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issue321.awinters.1 #322

Merged
merged 6 commits into from
Jul 19, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/cd-pr-test-debian-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
prBuildEntitySearchWebApp:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v1
- name: Capture environment variables
run: printenv
- name: Check if there are conflicts when local merging main
Expand All @@ -29,7 +29,7 @@ jobs:
matrix:
node-version: [12.x]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
[markdownlint](https://dlaa.me/markdownlint/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [2.7.1] - 2022-7-19

### Modified
- bugfixes for match key filtering

relevant tickets: #321 #302

## [2.7.0] - 2022-7-07
This update adds the long-awaited *Expand/Collapse* graph node edge feature. Now nodes in the graph will display a bubble with the number of relationships not currently visible. Relationships can be explored by simply expanding relationships down a path.
The *Why Not* report can now be run from specific integration points. The why not report will run a side-by-side table of two entities information in order to help illustrate why two entities did not come together.
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ ARG PROD_IMAGE=node:16-alpine3.15
ARG TEST_IMAGE=node:16-bullseye-slim

FROM ${BUILD_IMAGE}
ENV REFRESHED_AT=2022-07-07
ENV REFRESHED_AT=2022-07-19

LABEL Name="senzing/entity-search-web-app" \
Maintainer="support@senzing.com" \
Version="2.7.0"
Version="2.7.1"

HEALTHCHECK CMD ["/app/healthcheck.sh"]

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@senzing/entity-search-web-app",
"version": "2.7.0",
"version": "2.7.1",
"license": "Apache-2.0",
"scripts": {
"ng": "ng",
Expand Down
3 changes: 2 additions & 1 deletion src/app/graph/graph.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,10 @@
(entityClick)="onGraphEntityClick($event)"
[showMatchKeys]="_showMatchKeys"
[showMatchKeyTokenFilters]="true"
matchKeyTokenSelectionScope="CORE"
(requestStarted)="onRequestStarted($event)"
(renderComplete)="onRenderComplete($event)"
(requestComplete)="onRequestComplete($event)"matchKeyTokensIncluded
(requestComplete)="onRequestComplete($event)"
(dataLoaded)="onDataLoaded($event)"
(dataUpdated)="onDataUpdated($event)"
(dataSourcesChange)="onDataSourcesChange($event)"
Expand Down
2 changes: 1 addition & 1 deletion src/app/graph/graph.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ export class GraphComponent implements OnInit, AfterViewInit, OnDestroy {
return mkToken.name;
});
this._showMatchKeyTokensInFilter = data;
this.prefs.graph.matchKeyTokensIncluded = allTokens;
//this.prefs.graph.matchKeyTokensIncluded = allTokens;
}
onSearchException(err: Error) {
throw (err.message);
Expand Down