Skip to content

Commit

Permalink
fix(ui/dashboard): Typo (#282)
Browse files Browse the repository at this point in the history
  • Loading branch information
simonmartinez authored Jul 27, 2021
1 parent 8debe2c commit d04cb88
Show file tree
Hide file tree
Showing 6 changed files with 4,072 additions and 4,579 deletions.
1 change: 0 additions & 1 deletion ui/dashboard/angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,6 @@
"optimization": true,
"outputHashing": "all",
"sourceMap": false,
"extractCss": true,
"namedChunks": false,
"extractLicenses": true,
"vendorChunk": false,
Expand Down
8,620 changes: 4,057 additions & 4,563 deletions ui/dashboard/package-lock.json

Large diffs are not rendered by default.

18 changes: 9 additions & 9 deletions ui/dashboard/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,31 +33,31 @@
"js-yaml": "3.14.0",
"lodash-es": "4.17.15",
"moment": "2.29.1",
"monaco-editor": "0.21.2",
"monaco-editor": "0.25.2",
"ng-zorro-antd": "11.4.1",
"rxjs": "6.6.3",
"tslib": "2.0.3",
"zone.js": "0.11.3"
},
"devDependencies": {
"@angular-builders/custom-webpack": "11.0.0",
"@angular-devkit/build-angular": "0.1100.1",
"@angular-devkit/build-ng-packagr": "0.1002.0",
"@angular/cli": "11.2.13",
"@angular-builders/custom-webpack": "11.1.1",
"@angular-devkit/build-angular": "0.1102.14",
"@angular-devkit/build-ng-packagr": "0.1100.0-next.5",
"@angular/cli": "11.2.14",
"@angular/compiler-cli": "11.2.14",
"@angular/language-service": "11.2.14",
"@types/jasmine": "3.6.1",
"@types/jasmine": "3.6.2",
"@types/jasminewd2": "2.0.8",
"@types/node": "14.14.7",
"@types/node": "14.14.11",
"codelyzer": "6.0.1",
"jasmine-core": "3.6.0",
"jasmine-spec-reporter": "6.0.0",
"karma": "5.2.3",
"karma": "6.3.4",
"karma-chrome-launcher": "3.1.0",
"karma-coverage-istanbul-reporter": "3.0.3",
"karma-jasmine": "4.0.1",
"karma-jasmine-html-reporter": "1.5.4",
"ng-packagr": "11.2.4",
"ng-packagr": "12.1.0",
"protractor": "7.0.0",
"ts-node": "9.0.0",
"tslint": "6.1.2",
Expand Down
2 changes: 1 addition & 1 deletion ui/dashboard/projects/utask-lib/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@ovhcloud/utask-lib",
"version": "0.0.0",
"peerDependencies": {
"monaco-editor": "^0.21.2",
"monaco-editor": "^0.25.2",
"ng-zorro-antd": "^11.0.0",
"@angular/common": "^11.0.0",
"@angular/core": "^11.0.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,9 @@
(ngModelChange)="autorefresh.hasChanged = true">
</nz-switch>
<button type="button" nz-button nzType="primary" nzShape="circle" nzSize="small" (click)="loadTask(true)"
title="Refresh tasks" [nzLoading]="loaders.task || loaders.resolution || loaders.refreshResolution || loaders.refreshTask" [disabled]="autorefresh.actif"><i
nz-icon nzType="sync"></i></button>
title="Refresh tasks"
[nzLoading]="loaders.task || loaders.resolution || loaders.refreshResolution || loaders.refreshTask"
[disabled]="autorefresh.actif"><i nz-icon nzType="sync"></i></button>
</nz-page-header-extra>
</nz-page-header>

Expand Down Expand Up @@ -89,14 +90,14 @@
</tbody>
</table>
</nz-descriptions-item>
<nz-descriptions-item nzTitle="Informations">
<nz-descriptions-item nzTitle="Information">
Created by {{task.requester_username}} <abbr
title="{{task.created | date : 'yyyy/MM/dd HH:mm'}}"><em>{{task.created |
utaskFromNow}}</em></abbr>
<span
*ngIf="task.created != task.last_activity || task.requester_username != task.resolver_username">
and
updated by {{task.resolver_username}} <abbr
updated {{task.resolver_username ? 'by' : ''}} {{task.resolver_username}} <abbr
title="{{task.last_activity | date : 'yyyy/MM/dd HH:mm'}}"><em>{{task.last_activity |
utaskFromNow}}</em></abbr></span>
</nz-descriptions-item>
Expand Down
1 change: 0 additions & 1 deletion ui/editor/angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@
"optimization": true,
"outputHashing": "all",
"sourceMap": false,
"extractCss": true,
"namedChunks": false,
"aot": true,
"extractLicenses": true,
Expand Down

0 comments on commit d04cb88

Please sign in to comment.