Skip to content

Commit

Permalink
fix: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
cmoinier committed Feb 24, 2025
1 parent 28b82a6 commit 36fb592
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
1 change: 0 additions & 1 deletion apps/geoadmin-demo/src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,6 @@
recordView.setAttribute('record-id', uuid)
recordView.style.height = '100%'


container.appendChild(closeButton)
container.appendChild(recordView)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
</div>
<mat-tab-group>
<mat-tab label="Table View">
<div class="relative h-full" style="height: 500px;">
<div class="relative h-full" style="height: 500px">
<wc-gn-dataset-view-table
class="overflow-auto grow h-full"
[apiUrl]="apiUrl"
Expand All @@ -38,7 +38,7 @@
</div>
</mat-tab>
<mat-tab label="Chart View">
<div class="relative h-full" style="height: 500px;">
<div class="relative h-full" style="height: 500px">
<wc-gn-dataset-view-chart
class="overflow-auto grow h-full"
[apiUrl]="apiUrl"
Expand Down Expand Up @@ -122,7 +122,7 @@

<ng-template #loadingOrError>
<gn-ui-error
[type]="errorTypes.RECORD_NOT_FOUND"
[type]="errorType.RECORD_NOT_FOUND"
[recordId]="recordId"
></gn-ui-error>
</ng-template>
7 changes: 5 additions & 2 deletions apps/webcomponents/src/app/webcomponents.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,11 @@ import {
BlockListComponent,
PreviousNextButtonsComponent,
} from '@geonetwork-ui/ui/layout'
import {ChartViewComponent, TableViewComponent} from "@geonetwork-ui/feature/dataviz";
import {MatTabsModule} from "@angular/material/tabs";
import {
ChartViewComponent,
TableViewComponent,
} from '@geonetwork-ui/feature/dataviz'
import { MatTabsModule } from '@angular/material/tabs'

const CUSTOM_ELEMENTS: [new (...args) => BaseComponent, string][] = [
[GnFacetsComponent, 'gn-facets'],
Expand Down

0 comments on commit 36fb592

Please sign in to comment.