Skip to content

Commit 0c4e35e

Browse files
committed
fix: typo
1 parent 28b82a6 commit 0c4e35e

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

apps/geoadmin-demo/src/index.html

-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,6 @@
105105
recordView.setAttribute('record-id', uuid)
106106
recordView.style.height = '100%'
107107

108-
109108
container.appendChild(closeButton)
110109
container.appendChild(recordView)
111110

apps/webcomponents/src/app/components/gn-record-view/gn-record-view.component.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
</div>
2929
<mat-tab-group>
3030
<mat-tab label="Table View">
31-
<div class="relative h-full" style="height: 500px;">
31+
<div class="relative h-full" style="height: 500px">
3232
<wc-gn-dataset-view-table
3333
class="overflow-auto grow h-full"
3434
[apiUrl]="apiUrl"
@@ -38,7 +38,7 @@
3838
</div>
3939
</mat-tab>
4040
<mat-tab label="Chart View">
41-
<div class="relative h-full" style="height: 500px;">
41+
<div class="relative h-full" style="height: 500px">
4242
<wc-gn-dataset-view-chart
4343
class="overflow-auto grow h-full"
4444
[apiUrl]="apiUrl"
@@ -122,7 +122,7 @@
122122

123123
<ng-template #loadingOrError>
124124
<gn-ui-error
125-
[type]="errorTypes.RECORD_NOT_FOUND"
125+
[type]="errorType.RECORD_NOT_FOUND"
126126
[recordId]="recordId"
127127
></gn-ui-error>
128128
</ng-template>

apps/webcomponents/src/app/webcomponents.module.ts

+5-2
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,11 @@ import {
6464
BlockListComponent,
6565
PreviousNextButtonsComponent,
6666
} from '@geonetwork-ui/ui/layout'
67-
import {ChartViewComponent, TableViewComponent} from "@geonetwork-ui/feature/dataviz";
68-
import {MatTabsModule} from "@angular/material/tabs";
67+
import {
68+
ChartViewComponent,
69+
TableViewComponent,
70+
} from '@geonetwork-ui/feature/dataviz'
71+
import { MatTabsModule } from '@angular/material/tabs'
6972

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

0 commit comments

Comments
 (0)