diff --git a/src/Squidex/app/features/settings/module.ts b/src/Squidex/app/features/settings/module.ts index d8c37211d..bf7eddbf8 100644 --- a/src/Squidex/app/features/settings/module.ts +++ b/src/Squidex/app/features/settings/module.ts @@ -176,7 +176,16 @@ const routes: Routes = [ }, { path: 'workflows', - component: WorkflowsPageComponent + component: WorkflowsPageComponent, + children: [ + { + path: 'help', + component: HelpComponent, + data: { + helpPage: '05-integrated/workflows' + } + } + ] } ] } diff --git a/src/Squidex/app/features/settings/pages/workflows/workflows-page.component.html b/src/Squidex/app/features/settings/pages/workflows/workflows-page.component.html index 452c4fb20..6fd2a206a 100644 --- a/src/Squidex/app/features/settings/pages/workflows/workflows-page.component.html +++ b/src/Squidex/app/features/settings/pages/workflows/workflows-page.component.html @@ -1,6 +1,6 @@ - + Workflow @@ -44,4 +44,14 @@ - \ No newline at end of file + + +
+ + + +
+
+
+ + diff --git a/src/Squidex/app/framework/angular/panel.component.html b/src/Squidex/app/framework/angular/panel.component.html index 0abb33f98..34a74e4b6 100644 --- a/src/Squidex/app/framework/angular/panel.component.html +++ b/src/Squidex/app/framework/angular/panel.component.html @@ -26,7 +26,11 @@
-
+
diff --git a/src/Squidex/app/theme/_panels.scss b/src/Squidex/app/theme/_panels.scss index e8f35e99e..e97323d77 100644 --- a/src/Squidex/app/theme/_panels.scss +++ b/src/Squidex/app/theme/_panels.scss @@ -96,6 +96,10 @@ border: 0; } + &-blank-bordered { + border-top: 1px solid $color-border; + } + // Scrolling must be enabled optionally to prevent bugs. &-scroll { overflow-y: scroll;