aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+videos/+video-edit/video-update.component.html
diff options
context:
space:
mode:
authorRigel Kent <sendmemail@rigelk.eu>2020-07-01 02:08:58 +0200
committerRigel Kent <par@rigelk.eu>2020-07-01 17:03:48 +0200
commit1fe1e14cb30ac44299563f98ed0aee2805794493 (patch)
treece7066676a6aea5c022094bda4cc4068bd5f6fcf /client/src/app/+videos/+video-edit/video-update.component.html
parentc41c0e28ed444fdb427f9803d2f123ba6f535fb9 (diff)
downloadPeerTube-1fe1e14cb30ac44299563f98ed0aee2805794493.tar.gz
PeerTube-1fe1e14cb30ac44299563f98ed0aee2805794493.tar.zst
PeerTube-1fe1e14cb30ac44299563f98ed0aee2805794493.zip
fix video update button, add color to danger zone
Diffstat (limited to 'client/src/app/+videos/+video-edit/video-update.component.html')
-rw-r--r--client/src/app/+videos/+video-edit/video-update.component.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/client/src/app/+videos/+video-edit/video-update.component.html b/client/src/app/+videos/+video-edit/video-update.component.html
index 1517d4991..6c1239395 100644
--- a/client/src/app/+videos/+video-edit/video-update.component.html
+++ b/client/src/app/+videos/+video-edit/video-update.component.html
@@ -13,10 +13,10 @@
13 ></my-video-edit> 13 ></my-video-edit>
14 14
15 <div class="submit-container"> 15 <div class="submit-container">
16 <div class="submit-button" (click)="update()" [ngClass]="{ disabled: !form.valid || isUpdatingVideo === true }"> 16 <my-button className="orange-button" i18n-label label="Update" icon="circle-tick"
17 <my-global-icon iconName="circle-tick" aria-hidden="true"></my-global-icon> 17 (click)="update()" (keydown.enter)="update()"
18 <input type="button" i18n-value value="Update" /> 18 [disabled]="!form.valid || isUpdatingVideo === true"
19 </div> 19 ></my-button>
20 </div> 20 </div>
21 </form> 21 </form>
22</div> 22</div>