This commit is contained in:
phil 2025-06-28 03:58:17 +02:00
parent 4c4dc3fc5c
commit bbffcd5aed
10 changed files with 116 additions and 119 deletions

View file

@ -12,7 +12,6 @@ export interface DialogData {
@Component({
selector: 'gisaf-admin-access-role-dialog',
templateUrl: 'role-dialog.component.html',
styleUrls: ['role-dialog.component.css'],
})
export class GisafAdminAccessRoleDialogComponent implements OnInit {
formGroup: UntypedFormGroup = new UntypedFormGroup({})

View file

@ -7,7 +7,6 @@ import { AdminManageDataService } from '../data.service'
@Component({
selector: 'gisaf-admin-maintenance',
templateUrl: './maintenance.component.html',
styleUrls: ['./maintenance.component.css'],
changeDetection: ChangeDetectionStrategy.OnPush,
})
export class AdminMaintenanceComponent implements OnInit {

View file

@ -4,6 +4,5 @@ import { Component } from '@angular/core'
@Component({
selector: 'gisaf-info-home',
templateUrl: './info-home.component.html',
styleUrls: ['./info-home.component.css']
})
export class InfoHomeComponent { }

View file

@ -1,5 +1,7 @@
import { Component, Input,
ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'
import {
Component, Input,
ChangeDetectionStrategy, ChangeDetectorRef
} from '@angular/core'
import { Tag } from './tags.service'
import { FullInfo, InfoDataService, FormField } from '../info-data.service'
@ -12,7 +14,6 @@ import { MapControlService } from '../../map/map-control.service'
@Component({
selector: 'gisaf-tag-action',
templateUrl: './tag-action.component.html',
styleUrls: ['./tag-action.component.css'],
changeDetection: ChangeDetectionStrategy.OnPush,
})
export class TagActionComponent {

View file

@ -8,7 +8,6 @@ import { Downloader } from '../../openapi'
@Component({
selector: 'gisaf-downloader',
templateUrl: './downloader.component.html',
styleUrls: ['./downloader.component.css']
})
export class DownloaderComponent implements OnInit {
@Input() source: FullInfo