diff --git a/frontend/src/app/features/settings/pages/backups/backups-page.component.html b/frontend/src/app/features/settings/pages/backups/backups-page.component.html
index d4da951e4..36d6c8e39 100644
--- a/frontend/src/app/features/settings/pages/backups/backups-page.component.html
+++ b/frontend/src/app/features/settings/pages/backups/backups-page.component.html
@@ -21,7 +21,7 @@
{{ 'backups.empty' | sqxTranslate }}
-
diff --git a/frontend/src/app/features/settings/pages/more/more-page.component.html b/frontend/src/app/features/settings/pages/more/more-page.component.html
index ee7c61500..788540e67 100644
--- a/frontend/src/app/features/settings/pages/more/more-page.component.html
+++ b/frontend/src/app/features/settings/pages/more/more-page.component.html
@@ -33,7 +33,7 @@
diff --git a/frontend/src/app/features/settings/pages/workflows/workflow-transition.component.scss b/frontend/src/app/features/settings/pages/workflows/workflow-transition.component.scss
index 96776f67e..e3325c74a 100644
--- a/frontend/src/app/features/settings/pages/workflows/workflow-transition.component.scss
+++ b/frontend/src/app/features/settings/pages/workflows/workflow-transition.component.scss
@@ -10,13 +10,6 @@
pointer-events: none;
}
-.form-control {
- &:disabled,
- &.disabled {
- background: $color-white;
- }
-}
-
.transition-to {
@include truncate;
}
\ No newline at end of file
diff --git a/frontend/src/app/features/settings/pages/workflows/workflow.component.html b/frontend/src/app/features/settings/pages/workflows/workflow.component.html
index 3b1c7e34d..846509fc6 100644
--- a/frontend/src/app/features/settings/pages/workflows/workflow.component.html
+++ b/frontend/src/app/features/settings/pages/workflows/workflow.component.html
@@ -61,7 +61,8 @@
-
@@ -77,6 +78,7 @@
diff --git a/frontend/src/app/features/settings/settings-area.component.html b/frontend/src/app/features/settings/settings-area.component.html
index 954f8bafb..b5f5104f1 100644
--- a/frontend/src/app/features/settings/settings-area.component.html
+++ b/frontend/src/app/features/settings/settings-area.component.html
@@ -25,7 +25,7 @@
{{ 'common.editing' | sqxTranslate }}
-
+
{{ 'common.assetScripts' | sqxTranslate }}
diff --git a/frontend/src/app/shared/services/apps.service.ts b/frontend/src/app/shared/services/apps.service.ts
index 8197a6401..fceb9ed6d 100644
--- a/frontend/src/app/shared/services/apps.service.ts
+++ b/frontend/src/app/shared/services/apps.service.ts
@@ -17,6 +17,7 @@ export class AppDto {
public readonly canCreateSchema: boolean;
public readonly canDelete: boolean;
public readonly canReadAssets: boolean;
+ public readonly canReadAssetsScripts: boolean;
public readonly canReadBackups: boolean;
public readonly canReadClients: boolean;
public readonly canReadContributors: boolean;
@@ -55,6 +56,7 @@ export class AppDto {
this.canCreateSchema = hasAnyLink(links, 'schemas/create');
this.canDelete = hasAnyLink(links, 'delete');
this.canReadAssets = hasAnyLink(links, 'assets');
+ this.canReadAssetsScripts = hasAnyLink(links, 'assets/scripts');
this.canReadBackups = hasAnyLink(links, 'backups');
this.canReadClients = hasAnyLink(links, 'clients');
this.canReadContributors = hasAnyLink(links, 'contributors');