diff --git a/terminus-terminal/src/components/profilesSettingsTab.component.pug b/terminus-terminal/src/components/profilesSettingsTab.component.pug index 07701bfa..de3e0235 100644 --- a/terminus-terminal/src/components/profilesSettingsTab.component.pug +++ b/terminus-terminal/src/components/profilesSettingsTab.component.pug @@ -1,13 +1,13 @@ h3 Saved Profiles -.list-group.mt-3.mb-3 +.list-group.list-group-flush.mt-3.mb-3 .list-group-item.list-group-item-action.d-flex.align-items-center( *ngFor='let profile of profiles', (click)='editProfile(profile)', ) .mr-auto div {{profile.name}} - .text-muted {{profile.description}} + .text-muted {{profile.sessionOptions.command}} button.btn.btn-outline-danger.ml-1((click)='$event.stopPropagation(); deleteProfile(profile)') i.fa.fa-trash-o