diff --git a/apps/red-ui/src/app/modules/dossier/screens/dossier-overview/components/bulk-actions/dossier-overview-bulk-actions.component.ts b/apps/red-ui/src/app/modules/dossier/screens/dossier-overview/components/bulk-actions/dossier-overview-bulk-actions.component.ts
index 8271fd949..7ec6cd340 100644
--- a/apps/red-ui/src/app/modules/dossier/screens/dossier-overview/components/bulk-actions/dossier-overview-bulk-actions.component.ts
+++ b/apps/red-ui/src/app/modules/dossier/screens/dossier-overview/components/bulk-actions/dossier-overview-bulk-actions.component.ts
@@ -122,14 +122,14 @@ export class DossierOverviewBulkActionsComponent implements OnChanges {
type: ActionTypes.circleBtn,
action: () => this._bulkActionsService.toggleAutomaticAnalysis(this.selectedFiles),
tooltip: _('dossier-overview.stop-auto-analysis'),
- icon: 'red:stop',
+ icon: 'red:disable-analysis',
show: this.#canDisableAutoAnalysis,
},
{
type: ActionTypes.circleBtn,
action: () => this._bulkActionsService.toggleAutomaticAnalysis(this.selectedFiles),
tooltip: _('dossier-overview.start-auto-analysis'),
- icon: 'red:play',
+ icon: 'red:enable-analysis',
show: this.#canEnableAutoAnalysis,
},
diff --git a/apps/red-ui/src/app/modules/dossier/shared/components/file-actions/file-actions.component.ts b/apps/red-ui/src/app/modules/dossier/shared/components/file-actions/file-actions.component.ts
index aab882408..227422d94 100644
--- a/apps/red-ui/src/app/modules/dossier/shared/components/file-actions/file-actions.component.ts
+++ b/apps/red-ui/src/app/modules/dossier/shared/components/file-actions/file-actions.component.ts
@@ -202,7 +202,7 @@ export class FileActionsComponent extends AutoUnsubscribe implements OnDestroy,
type: ActionTypes.circleBtn,
action: $event => this.toggleAutomaticAnalysis($event),
tooltip: _('dossier-overview.stop-auto-analysis'),
- icon: 'red:stop',
+ icon: 'red:disable-analysis',
show: this.canDisableAutoAnalysis,
},
{
@@ -218,7 +218,7 @@ export class FileActionsComponent extends AutoUnsubscribe implements OnDestroy,
action: $event => this.toggleAutomaticAnalysis($event),
tooltip: _('dossier-overview.start-auto-analysis'),
buttonType: this.isFilePreview ? CircleButtonTypes.warn : CircleButtonTypes.default,
- icon: 'red:play',
+ icon: 'red:enable-analysis',
show: this.canEnableAutoAnalysis,
},
{
diff --git a/apps/red-ui/src/app/modules/icons/icons.module.ts b/apps/red-ui/src/app/modules/icons/icons.module.ts
index af50170a6..3513cf42d 100644
--- a/apps/red-ui/src/app/modules/icons/icons.module.ts
+++ b/apps/red-ui/src/app/modules/icons/icons.module.ts
@@ -26,7 +26,9 @@ export class IconsModule {
'csv',
'dictionary',
'denied',
+ 'disable-analysis',
'double-chevron-right',
+ 'enable-analysis',
'enter',
'entries',
'exclude-pages',
@@ -47,7 +49,6 @@ export class IconsModule {
'new-tab',
'notification',
'page',
- 'play',
'preview',
'put-back',
'read-only',
@@ -64,7 +65,6 @@ export class IconsModule {
'secret',
'status',
'status-info',
- 'stop',
'template',
'thumb-down',
'thumb-up',
diff --git a/apps/red-ui/src/assets/icons/general/disable-analysis.svg b/apps/red-ui/src/assets/icons/general/disable-analysis.svg
new file mode 100644
index 000000000..820f3267d
--- /dev/null
+++ b/apps/red-ui/src/assets/icons/general/disable-analysis.svg
@@ -0,0 +1,9 @@
+
+
diff --git a/apps/red-ui/src/assets/icons/general/enable-analysis.svg b/apps/red-ui/src/assets/icons/general/enable-analysis.svg
new file mode 100644
index 000000000..f058e0525
--- /dev/null
+++ b/apps/red-ui/src/assets/icons/general/enable-analysis.svg
@@ -0,0 +1,9 @@
+
+
diff --git a/apps/red-ui/src/assets/icons/general/play.svg b/apps/red-ui/src/assets/icons/general/play.svg
deleted file mode 100644
index 1b37e3874..000000000
--- a/apps/red-ui/src/assets/icons/general/play.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
-
-
\ No newline at end of file
diff --git a/apps/red-ui/src/assets/icons/general/stop.svg b/apps/red-ui/src/assets/icons/general/stop.svg
deleted file mode 100644
index db10a7bb9..000000000
--- a/apps/red-ui/src/assets/icons/general/stop.svg
+++ /dev/null
@@ -1,5 +0,0 @@
-
-
\ No newline at end of file