aboutsummaryrefslogtreecommitdiffhomepage
path: root/client
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2020-07-21 11:16:28 +0200
committerChocobozzz <me@florianbigard.com>2020-07-21 11:16:28 +0200
commit2291a412d25bd139398ca9e7a5131d0c1e4ffd7d (patch)
tree0bd9d8b135e43ed681f6949040ec2cf698080549 /client
parentd28d13581fe8cb4c72ee7c2ef43cb1196fd8b5fa (diff)
parent97aaeadad537cc6b19f508f074c3fba01ed1e93b (diff)
downloadPeerTube-2291a412d25bd139398ca9e7a5131d0c1e4ffd7d.tar.gz
PeerTube-2291a412d25bd139398ca9e7a5131d0c1e4ffd7d.tar.zst
PeerTube-2291a412d25bd139398ca9e7a5131d0c1e4ffd7d.zip
Merge branch 'release/2.3.0' into develop
Diffstat (limited to 'client')
-rw-r--r--client/e2e/local-protractor.conf.js2
-rw-r--r--client/e2e/src/po/video-update.po.ts2
-rw-r--r--client/e2e/src/po/video-upload.po.ts2
-rw-r--r--client/package.json2
-rw-r--r--client/src/app/+videos/+video-edit/video-add-components/video-upload.component.html2
5 files changed, 5 insertions, 5 deletions
diff --git a/client/e2e/local-protractor.conf.js b/client/e2e/local-protractor.conf.js
index a4990fcef..16f039025 100644
--- a/client/e2e/local-protractor.conf.js
+++ b/client/e2e/local-protractor.conf.js
@@ -12,7 +12,7 @@ exports.config = {
12 capabilities: { 12 capabilities: {
13 'browserName': 'firefox', 13 'browserName': 'firefox',
14 'moz:firefoxOptions': { 14 'moz:firefoxOptions': {
15 binary: '/usr/bin/firefox-esr', 15 binary: '/usr/bin/firefox-developer-edition',
16 // args: ["-headless"], 16 // args: ["-headless"],
17 log: { 17 log: {
18 "level": "info" // default is "info" 18 "level": "info" // default is "info"
diff --git a/client/e2e/src/po/video-update.po.ts b/client/e2e/src/po/video-update.po.ts
index 4de3b1b1d..752741378 100644
--- a/client/e2e/src/po/video-update.po.ts
+++ b/client/e2e/src/po/video-update.po.ts
@@ -15,6 +15,6 @@ export class VideoUpdatePage {
15 } 15 }
16 16
17 private getSubmitButton () { 17 private getSubmitButton () {
18 return element(by.css('.submit-button:not(.disabled) input')) 18 return element(by.css('.submit-container .action-button'))
19 } 19 }
20} 20}
diff --git a/client/e2e/src/po/video-upload.po.ts b/client/e2e/src/po/video-upload.po.ts
index f79927abc..9eb1e31c1 100644
--- a/client/e2e/src/po/video-upload.po.ts
+++ b/client/e2e/src/po/video-upload.po.ts
@@ -40,6 +40,6 @@ export class VideoUploadPage {
40 } 40 }
41 41
42 private getSecondStepSubmitButton () { 42 private getSecondStepSubmitButton () {
43 return element(by.css('.submit-button:not(.disabled) input')) 43 return element(by.css('.submit-button:not(.disabled)'))
44 } 44 }
45} 45}
diff --git a/client/package.json b/client/package.json
index 3ed4f58d0..a54eebc79 100644
--- a/client/package.json
+++ b/client/package.json
@@ -1,6 +1,6 @@
1{ 1{
2 "name": "peertube-client", 2 "name": "peertube-client",
3 "version": "2.3.0-rc.1", 3 "version": "2.3.0",
4 "private": true, 4 "private": true,
5 "license": "AGPL-3.0", 5 "license": "AGPL-3.0",
6 "author": { 6 "author": {
diff --git a/client/src/app/+videos/+video-edit/video-add-components/video-upload.component.html b/client/src/app/+videos/+video-edit/video-add-components/video-upload.component.html
index 8af1687e6..95b6628f6 100644
--- a/client/src/app/+videos/+video-edit/video-add-components/video-upload.component.html
+++ b/client/src/app/+videos/+video-edit/video-add-components/video-upload.component.html
@@ -79,7 +79,7 @@
79 <div class="submit-container"> 79 <div class="submit-container">
80 <div i18n *ngIf="videoUploaded === false" class="message-submit">Publish will be available when upload is finished</div> 80 <div i18n *ngIf="videoUploaded === false" class="message-submit">Publish will be available when upload is finished</div>
81 81
82 <my-button className="orange-button" i18n-label label="Publish" icon="circle-tick" 82 <my-button className="submit-button orange-button" i18n-label label="Publish" icon="circle-tick"
83 (click)="updateSecondStep()" (keydown.enter)="updateSecondStep()" 83 (click)="updateSecondStep()" (keydown.enter)="updateSecondStep()"
84 [disabled]="isPublishingButtonDisabled()" 84 [disabled]="isPublishingButtonDisabled()"
85 ></my-button> 85 ></my-button>