Skip to content

Commit

Permalink
Merge branch 'release-5.20.4'
Browse files Browse the repository at this point in the history
  • Loading branch information
hirokiterashima committed Jan 22, 2021
2 parents 2fff6ef + ad72a6c commit b5297c9
Show file tree
Hide file tree
Showing 560 changed files with 17,632 additions and 14,904 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "wise",
"version": "5.20.3",
"version": "5.20.4",
"description": "Web-based Inquiry Science Environment",
"main": "app.js",
"browserslist": [
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
<artifactId>wise</artifactId>
<packaging>war</packaging>
<name>Web-based Inquiry Science Environment</name>
<version>5.20.3</version>
<version>5.20.4</version>
<url>http://wise5.org</url>
<licenses>
<license>
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5.20.3
5.20.4
12 changes: 5 additions & 7 deletions src/main/webapp/site/src/app/about/about-routing.module.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
import { NgModule } from '@angular/core';
import { RouterModule, Routes } from '@angular/router';
import { AboutComponent } from "./about.component";
import { AboutComponent } from './about.component';

const aboutRoutes: Routes = [
{ path: '', component: AboutComponent }
];
const aboutRoutes: Routes = [{ path: '', component: AboutComponent }];

@NgModule({
imports: [ RouterModule.forChild(aboutRoutes) ],
exports: [ RouterModule ]
imports: [RouterModule.forChild(aboutRoutes)],
exports: [RouterModule]
})
export class AboutRoutingModule { }
export class AboutRoutingModule {}
9 changes: 4 additions & 5 deletions src/main/webapp/site/src/app/about/about.component.spec.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { NO_ERRORS_SCHEMA } from "@angular/core";
import { NO_ERRORS_SCHEMA } from '@angular/core';

import { AboutComponent } from './about.component';

Expand All @@ -9,10 +9,9 @@ describe('AboutComponent', () => {

beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ AboutComponent ],
schemas: [ NO_ERRORS_SCHEMA ]
})
.compileComponents();
declarations: [AboutComponent],
schemas: [NO_ERRORS_SCHEMA]
}).compileComponents();
}));

beforeEach(() => {
Expand Down
7 changes: 2 additions & 5 deletions src/main/webapp/site/src/app/about/about.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,7 @@ import { Component, OnInit } from '@angular/core';
styleUrls: ['./about.component.scss']
})
export class AboutComponent implements OnInit {
constructor() {}

constructor() { }

ngOnInit() {
}

ngOnInit() {}
}
25 changes: 7 additions & 18 deletions src/main/webapp/site/src/app/about/about.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,24 +3,13 @@ import { CommonModule } from '@angular/common';
import { FlexLayoutModule } from '@angular/flex-layout';
import { MatIconModule } from '@angular/material/icon';

import { AboutComponent } from "./about.component";
import { AboutRoutingModule } from "./about-routing.module";
import { SharedModule } from "../modules/shared/shared.module";
import { AboutComponent } from './about.component';
import { AboutRoutingModule } from './about-routing.module';
import { SharedModule } from '../modules/shared/shared.module';

@NgModule({
imports: [
CommonModule,
FlexLayoutModule,
MatIconModule,
AboutRoutingModule,
SharedModule
],
declarations: [
AboutComponent
],
exports: [
AboutComponent,
SharedModule
]
imports: [CommonModule, FlexLayoutModule, MatIconModule, AboutRoutingModule, SharedModule],
declarations: [AboutComponent],
exports: [AboutComponent, SharedModule]
})
export class AboutModule { }
export class AboutModule {}
Loading

0 comments on commit b5297c9

Please sign in to comment.