yt 7 mesi fa
parent
commit
bb9e9cb298

+ 4 - 1
smarthotel-app/angular.json

@@ -126,7 +126,10 @@
     }
   },
   "cli": {
-    "schematicCollections": ["@ionic/angular-toolkit"]
+    "schematicCollections": [
+      "@ionic/angular-toolkit"
+    ],
+    "analytics": false
   },
   "schematics": {
     "@ionic/angular-toolkit:component": {

+ 3 - 0
smarthotel-app/src/app/edit-tag/edit-tag.component.html

@@ -0,0 +1,3 @@
+<p>
+  edit-tag works!
+</p>

+ 0 - 0
smarthotel-app/src/app/edit-tag/edit-tag.component.scss


+ 22 - 0
smarthotel-app/src/app/edit-tag/edit-tag.component.spec.ts

@@ -0,0 +1,22 @@
+import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
+
+import { EditTagComponent } from './edit-tag.component';
+
+describe('EditTagComponent', () => {
+  let component: EditTagComponent;
+  let fixture: ComponentFixture<EditTagComponent>;
+
+  beforeEach(waitForAsync(() => {
+    TestBed.configureTestingModule({
+      imports: [EditTagComponent],
+    }).compileComponents();
+
+    fixture = TestBed.createComponent(EditTagComponent);
+    component = fixture.componentInstance;
+    fixture.detectChanges();
+  }));
+
+  it('should create', () => {
+    expect(component).toBeTruthy();
+  });
+});

+ 15 - 0
smarthotel-app/src/app/edit-tag/edit-tag.component.ts

@@ -0,0 +1,15 @@
+import { Component, OnInit } from '@angular/core';
+
+@Component({
+  selector: 'app-edit-tag',
+  templateUrl: './edit-tag.component.html',
+  styleUrls: ['./edit-tag.component.scss'],
+  standalone: true,
+})
+export class EditTagComponent  implements OnInit {
+
+  constructor() { }
+
+  ngOnInit() {}
+
+}

+ 1 - 0
smarthotel-app/src/app/tab3/tab3.page.ts

@@ -24,6 +24,7 @@ interface FAQ {
   ],
 })
 export class Tab3Page {
+
   userMessage: string = '';
   userRating: number = 0;
   userFeedback: string = '';