page changes

This commit is contained in:
bitbucket 2023-06-21 10:51:27 +05:30
parent 2fd514d946
commit a3f9342819
4 changed files with 10 additions and 8 deletions

View File

@ -26,6 +26,8 @@
"allowedNames": ["name"]
}
],
"@angular-eslint/no-empty-lifecycle-method": "off",
"@angular-eslint/component-selector": [
"error",
{

View File

@ -3,7 +3,7 @@
"version": 1,
"newProjectRoot": "projects",
"projects": {
"ngx-admin-demo": {
"vnms": {
"root": "",
"sourceRoot": "src",
"projectType": "application",
@ -92,18 +92,18 @@
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
"options": {
"browserTarget": "ngx-admin-demo:build"
"browserTarget": "vnms:build"
},
"configurations": {
"production": {
"browserTarget": "ngx-admin-demo:build:production"
"browserTarget": "vnms:build:production"
}
}
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
"browserTarget": "ngx-admin-demo:build"
"browserTarget": "vnms:build"
}
},
"test": {
@ -158,7 +158,7 @@
}
}
},
"ngx-admin-demo-e2e": {
"vnms-e2e": {
"root": "e2e",
"sourceRoot": "",
"projectType": "application",
@ -167,7 +167,7 @@
"builder": "@angular-devkit/build-angular:protractor",
"options": {
"protractorConfig": "./protractor.conf.js",
"devServerTarget": "ngx-admin-demo:serve"
"devServerTarget": "vnms:serve"
}
}
}

View File

@ -18,7 +18,7 @@
"test": "ng test",
"test:coverage": "rimraf coverage && npm run test -- --code-coverage",
"lint": "ng lint",
"lint:fix": "ng lint ngx-admin-demo --fix",
"lint:fix": "ng lint vnms --fix",
"lint:styles": "stylelint ./src/**/*.scss",
"lint:ci": "npm run lint && npm run lint:styles",
"pree2e": "webdriver-manager update --standalone false --gecko false",

View File

@ -8,7 +8,7 @@ import { NbComponentStatus, NbGlobalPhysicalPosition, NbGlobalPosition, NbToastr
selector: 'ngx-login',
templateUrl: './login.component.html',
styleUrls: ['./login.component.scss'],
host: { class: 'custom-login' },
// host: { class: 'custom-login' },
})
export class LoginComponent implements OnInit {
loginForm: FormGroup | any;