mirror of
https://github.com/valitydev/koffing.git
synced 2024-11-06 09:15:20 +00:00
FE-569: webhook key length (#192)
This commit is contained in:
parent
696b3e201f
commit
cb2252d990
@ -0,0 +1,7 @@
|
||||
.key-textarea {
|
||||
resize: none;
|
||||
}
|
||||
|
||||
.copy-key-btn {
|
||||
margin-top: 25px;
|
||||
}
|
@ -20,11 +20,10 @@ form.form-horizontal.form-label-left.css-form
|
||||
.col-xs-12.col-sm-4
|
||||
label.text-left Публичный ключ:
|
||||
.col-xs-12.col-sm-8
|
||||
.input-group
|
||||
input.form-control(type="text", #webhookPublicKey, readonly, [value]="webhook.publicKey")
|
||||
span.input-group-btn
|
||||
button.btn.btn-default.btn-primary((click)="copy()")
|
||||
| Скопировать
|
||||
textarea.form-control.key-textarea(#webhookPublicKey, readonly, [value]="webhook.publicKey", rows=10)
|
||||
.col-xs-12.col-sm-4.col-sm-offset-8.text-right
|
||||
button.btn.btn-default.btn-primary.copy-key-btn((click)="copy()")
|
||||
| Скопировать ключ
|
||||
.ln_solid
|
||||
.form-group
|
||||
.col-xs-12
|
||||
|
@ -6,6 +6,7 @@ import { WebhooksService } from 'koffing/backend/webhooks.service';
|
||||
@Component({
|
||||
selector: 'kof-webhook-details',
|
||||
templateUrl: './webhook-details.component.pug',
|
||||
styleUrls: ['./webhook-details.component.less']
|
||||
})
|
||||
export class WebhooksListDetailsComponent {
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user