aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2018-01-09 17:22:26 +0100
committerChocobozzz <me@florianbigard.com>2018-01-09 17:22:26 +0100
commitca309a9f6492f340295fee010ffa6dcc63fd76b4 (patch)
treecece9d0a20b4ebec3818cc219827209fd261021b /client/src
parent234b535dacdeacfacd7ac5601e53b6b7d923ca00 (diff)
downloadPeerTube-ca309a9f6492f340295fee010ffa6dcc63fd76b4.tar.gz
PeerTube-ca309a9f6492f340295fee010ffa6dcc63fd76b4.tar.zst
PeerTube-ca309a9f6492f340295fee010ffa6dcc63fd76b4.zip
Fix aot build
Diffstat (limited to 'client/src')
-rw-r--r--client/src/app/+admin/users/user-edit/user-edit.component.html2
-rw-r--r--client/src/tsconfig.app.json7
2 files changed, 7 insertions, 2 deletions
diff --git a/client/src/app/+admin/users/user-edit/user-edit.component.html b/client/src/app/+admin/users/user-edit/user-edit.component.html
index a69ffee77..a68dd231b 100644
--- a/client/src/app/+admin/users/user-edit/user-edit.component.html
+++ b/client/src/app/+admin/users/user-edit/user-edit.component.html
@@ -64,7 +64,7 @@
64 64
65 <div class="transcoding-information" *ngIf="isTranscodingInformationDisplayed()"> 65 <div class="transcoding-information" *ngIf="isTranscodingInformationDisplayed()">
66 Transcoding is enabled on server. The video quota only take in account <strong>original</strong> video. <br /> 66 Transcoding is enabled on server. The video quota only take in account <strong>original</strong> video. <br />
67 In maximum, this user could use ~ {{ computeQuotaWithTranscoding() | bytes: 0 }}. 67 At most, this user could use ~ {{ computeQuotaWithTranscoding() | bytes: 0 }}.
68 </div> 68 </div>
69 </div> 69 </div>
70 70
diff --git a/client/src/tsconfig.app.json b/client/src/tsconfig.app.json
index 39ba8dbac..4339f4d4b 100644
--- a/client/src/tsconfig.app.json
+++ b/client/src/tsconfig.app.json
@@ -8,6 +8,11 @@
8 }, 8 },
9 "exclude": [ 9 "exclude": [
10 "test.ts", 10 "test.ts",
11 "**/*.spec.ts" 11 "**/*.spec.ts",
12 "../node_modules/ngx-clipboard/**/*.spec.ts"
13 ],
14 "include": [
15 "**/*.ts",
16 "../node_modules/ngx-clipboard/*/**.ts"
12 ] 17 ]
13} 18}