mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2026-09-09 18:03:21 +00:00
fix hiding header for non group (#2512)
This commit is contained in:
+4
@@ -4,6 +4,10 @@
|
||||
$accent: map-get($theme, accent);
|
||||
$warn: map-get($theme, warn);
|
||||
|
||||
.hidden{
|
||||
display: none;
|
||||
}
|
||||
|
||||
.adf {
|
||||
&-field-list {
|
||||
padding: 0;
|
||||
|
||||
@@ -90,7 +90,9 @@ export class StartTaskComponent implements OnInit {
|
||||
|
||||
public start(): void {
|
||||
if (this.startTaskmodel.name) {
|
||||
this.startTaskmodel.category = this.appId.toString();
|
||||
if(this.appId) {
|
||||
this.startTaskmodel.category = this.appId.toString();
|
||||
}
|
||||
this.taskService.createNewTask(new TaskDetailsModel(this.startTaskmodel))
|
||||
.switchMap((createRes: any) =>
|
||||
this.attachForm(createRes.id, this.formKey).defaultIfEmpty(createRes)
|
||||
|
||||
Reference in New Issue
Block a user