Skip to content

Commit

Permalink
bugfixes (#710)
Browse files Browse the repository at this point in the history
* #708 zone.js deeplink fix

* #705 stack expando ui fix

* #709 set max-width of filter drawer
  • Loading branch information
arawinters authored Nov 27, 2024
1 parent e77bfb9 commit 6289dfb
Show file tree
Hide file tree
Showing 10 changed files with 13 additions and 10 deletions.
2 changes: 1 addition & 1 deletion e2e/harness/src/environments/environment.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ export const apiConfig: SzRestConfigurationParameters = {
* This import should be commented out in production mode because it will have a negative impact
* on performance if an error is thrown.
*/
import 'zone.js/dist/zone-error'; // Included with Angular CLI.
import 'zone.js'; // Included with Angular CLI.
2 changes: 1 addition & 1 deletion e2e/harness/src/environments/environment.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ export const apiConfig: SzRestConfigurationParameters = {
* This import should be commented out in production mode because it will have a negative impact
* on performance if an error is thrown.
*/
import 'zone.js/dist/zone-error'; // Included with Angular CLI.
import 'zone.js'; // Included with Angular CLI.
2 changes: 1 addition & 1 deletion examples/data-table/src/environments/environment.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ export const apiConfig: SzRestConfigurationParameters = {
* This import should be commented out in production mode because it will have a negative impact
* on performance if an error is thrown.
*/
import 'zone.js/dist/zone-error'; // Included with Angular CLI.
import 'zone.js'; // Included with Angular CLI.
2 changes: 1 addition & 1 deletion examples/data-table/src/polyfills.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
/***************************************************************************************************
* Zone JS is required by default for Angular itself.
*/
import 'zone.js/dist/zone'; // Included with Angular CLI.
import 'zone.js'; // Included with Angular CLI.


/***************************************************************************************************
Expand Down
2 changes: 1 addition & 1 deletion examples/search-in-graph/src/app/app.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export class AppComponent implements AfterViewInit {
public unsubscribe$ = new Subject<void>();
public currentSearchResults: SzAttributeSearchResult[];
public currentlySelectedEntityId: number;
public searchResultEntityIds: SzEntityIdentifier[] = [3];
public searchResultEntityIds: SzEntityIdentifier[] = [1];
//public searchResultEntityIds: SzEntityIdentifier[] = [300002];
//public searchResultEntityIds: SzEntityIdentifier[] = [500038];
public currentSearchParameters: SzEntitySearchParams;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ export const apiConfig: SzRestConfigurationParameters = {
* This import should be commented out in production mode because it will have a negative impact
* on performance if an error is thrown.
*/
import 'zone.js/dist/zone-error'; // Included with Angular CLI.
import 'zone.js'; // Included with Angular CLI.
2 changes: 1 addition & 1 deletion examples/search-with-results-and-details/src/polyfills.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
/***************************************************************************************************
* Zone JS is required by default for Angular itself.
*/
import 'zone.js/dist/zone'; // Included with Angular CLI.
import 'zone.js'; // Included with Angular CLI.


/***************************************************************************************************
Expand Down
2 changes: 1 addition & 1 deletion proxy.conf.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"/api/*": {
"/api/**": {
"target": "http://localhost:8250/",
"secure": false,
"logLevel": "debug",
Expand Down
2 changes: 2 additions & 0 deletions src/lib/graph/sz-graph.component.scss
Original file line number Diff line number Diff line change
Expand Up @@ -221,6 +221,8 @@ sz-graph-control, .sz-graph-control, .sz-graph-filter {
}

.sz-graph-filter {
max-width: 300px;

&.top-left {
top: 21px;
left: 0px;
Expand Down
5 changes: 3 additions & 2 deletions src/lib/how/sz-how-step-stack.component.scss
Original file line number Diff line number Diff line change
Expand Up @@ -88,12 +88,13 @@
justify-content: space-between;
//margin: 12px 0 0 0;
margin: 11px 0 -5px 2px;
align-items: center;

.center-area {
display: flex;
flex-grow: 20;
height: 100%;
width: 18px;
width: 2px;
justify-content: center;
background-size: 2px 9px;
background-image: linear-gradient(transparent 4px, #000 4px);
Expand All @@ -116,7 +117,7 @@
}
&.minus-button {
position: relative;
overflow: hidden;
/*overflow: hidden;*/

span {
position: absolute;
Expand Down

0 comments on commit 6289dfb

Please sign in to comment.