Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions ui/src/app/shared/workflow/wizard/hook/hook.form.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,12 @@ <h3 class="inline">{{ 'workflow_node_hook_form_title' | translate }}</h3>
<sui-select-option value="">{{'common_loading' | translate}}</sui-select-option>
</sui-select>
</ng-container>
<div class="inline fields uuid" *ngIf="_hook.uuid">
<div class="four wide field"><label>UUID</label></div>
<div class="twelve wide field">
<input type="text" value="{{hook.uuid}}" disabled>
</div>
</div>
<ng-container *ngIf="_hook.model && displayConfig">
<ng-container *ngIf="_hook.config && _hook.model.name !== 'Workflow'">
<h3>{{ 'workflow_node_hook_form_config' | translate }}</h3>
Expand Down
6 changes: 5 additions & 1 deletion ui/src/app/shared/workflow/wizard/hook/hook.form.scss
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,8 @@ codemirror {

.ui.form .inline.fields .field > .selection.dropdown, .ui.form .inline.field > .selection.dropdown {
width: 100%;
}
}

.ui.form .inline.fields.uuid {
margin-top: 10px;
}