-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* DSP-945-update resource viewer * enhancement (results-viewer) In worksace, display search results and resource viewer in side-by-side column Co-authored-by: André Kilchenmann <[email protected]>
- Loading branch information
Snehal Kumbhar
and
André Kilchenmann
authored
Nov 25, 2020
1 parent
a57b603
commit a66f848
Showing
5 changed files
with
24 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,10 @@ | ||
<div class="content large middle" *ngIf="searchParams"> | ||
<dsp-list-view [search]="searchParams" (resourceSelected)="openResource($event)"></dsp-list-view> | ||
<div class="content" *ngIf="searchParams" style="margin-top: 20px; height: 100vh;"> | ||
<as-split direction="horizontal"> | ||
<as-split-area [size]="40"> | ||
<dsp-list-view [search]="searchParams" (resourceSelected)="openResource($event)"></dsp-list-view> | ||
</as-split-area> | ||
<as-split-area [size]="60"> | ||
<dsp-resource-view [iri]="resourceIri" (openProject)="openProject($event)"></dsp-resource-view> | ||
</as-split-area> | ||
</as-split> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters