Skip to content

Commit

Permalink
♻️ refactor: 格式化登录组件及相关模块代码
Browse files Browse the repository at this point in the history
  • Loading branch information
vnobo committed Jul 2, 2024
1 parent b7d7766 commit e238678
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion ui/projects/commons/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "plate-commons",
"version": "0.0.2",
"version": "0.0.3",
"author": "Alex Bob <[email protected]>",
"peerDependencies": {
"@angular/common": "^18.0.0",
Expand Down
2 changes: 1 addition & 1 deletion ui/projects/web/src/app/app.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@
<ng-template #tpl>
<div class="ant-back-top-inner">UP</div>
</ng-template>
</nz-back-top>
</nz-back-top>
2 changes: 1 addition & 1 deletion ui/projects/web/src/app/app.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import {
withInterceptorsFromDi,
withXsrfConfiguration,
} from '@angular/common/http';
import {BrowserStorageServerService, BrowserStorageService} from 'commons';
import {BrowserStorageServerService, BrowserStorageService,} from 'plate-commons';
import {authTokenInterceptor, defaultInterceptor} from './http.Interceptor';
import {PageTitleStrategy} from './title-strategy.service';
import {routes} from './app.routes';
Expand Down
6 changes: 2 additions & 4 deletions ui/projects/web/src/core/security.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,8 @@ import {BrowserStorageService} from 'commons';
import {SecurityRoutingModule} from './security-routing.module';

@NgModule({
imports: [
SecurityRoutingModule
],
providers: [BrowserStorageService]
imports: [SecurityRoutingModule],
providers: [BrowserStorageService],
})
export class SecurityModule {
constructor(@Optional() @SkipSelf() parentModule?: SecurityModule) {
Expand Down

0 comments on commit e238678

Please sign in to comment.