mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-18 00:10:14 +01:00
fix(tables): fix #704
This commit is contained in:
parent
c85eae7e4b
commit
0fbad7ef9e
8 changed files with 2 additions and 16 deletions
|
|
@ -167,14 +167,7 @@
|
|||
"electron:start": "electron build",
|
||||
"build:aot:prod": "npm run clean:dist && npm run clean:aot && webpack --config config/webpack.prod.js --progress --profile --bail",
|
||||
"build:aot": "npm run build:aot:prod",
|
||||
"ci:aot": "npm run lint && npm run test && npm run build:aot && npm run e2e",
|
||||
"ci:jit": "npm run lint && npm run test && npm run build:prod && npm run e2e",
|
||||
"ci:nobuild": "npm run lint && npm test && npm run e2e",
|
||||
"ci:testall": "npm run lint && npm run test && npm run build:prod && npm run e2e && npm run build:aot && npm run e2e",
|
||||
"ci": "npm run ci:testall",
|
||||
"clean:aot": "npm run rimraf -- compiled",
|
||||
"e2e": "npm-run-all -p -r server:prod:ci e2e:only",
|
||||
"e2e:only": "npm run protractor"
|
||||
"clean:aot": "npm run rimraf -- compiled"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
|
|
|||
|
|
@ -2,7 +2,6 @@ import {Component} from '@angular/core';
|
|||
|
||||
@Component({
|
||||
selector: 'maps',
|
||||
styles: [],
|
||||
template: `<router-outlet></router-outlet>`
|
||||
})
|
||||
export class Charts {
|
||||
|
|
|
|||
|
|
@ -3,7 +3,6 @@ import { NgUploaderOptions } from 'ngx-uploader';
|
|||
|
||||
@Component({
|
||||
selector: 'layouts',
|
||||
styles: [],
|
||||
templateUrl: './layouts.html',
|
||||
})
|
||||
export class Layouts {
|
||||
|
|
|
|||
|
|
@ -2,7 +2,6 @@ import {Component} from '@angular/core';
|
|||
|
||||
@Component({
|
||||
selector: 'forms',
|
||||
styles: [],
|
||||
template: `<router-outlet></router-outlet>`
|
||||
})
|
||||
export class Forms {
|
||||
|
|
|
|||
|
|
@ -2,7 +2,6 @@ import {Component} from '@angular/core';
|
|||
|
||||
@Component({
|
||||
selector: 'maps',
|
||||
styles: [],
|
||||
template: `<router-outlet></router-outlet>`
|
||||
})
|
||||
export class Maps {
|
||||
|
|
|
|||
|
|
@ -6,7 +6,6 @@ import { MENU } from '../app.menu';
|
|||
|
||||
@Component({
|
||||
selector: 'pages',
|
||||
styles: [],
|
||||
template: `
|
||||
<ba-sidebar></ba-sidebar>
|
||||
<ba-page-top></ba-page-top>
|
||||
|
|
|
|||
|
|
@ -1,8 +1,7 @@
|
|||
import {Component} from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'forms',
|
||||
styles: [],
|
||||
selector: 'tables',
|
||||
template: `<router-outlet></router-outlet>`
|
||||
})
|
||||
export class Tables {
|
||||
|
|
|
|||
|
|
@ -2,7 +2,6 @@ import {Component} from '@angular/core';
|
|||
|
||||
@Component({
|
||||
selector: 'ui',
|
||||
styles: [],
|
||||
template: `<router-outlet></router-outlet>`
|
||||
})
|
||||
export class Ui {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue