diff options
Diffstat (limited to 'apps/workflowengine/lib/Settings/Section.php')
-rw-r--r-- | apps/workflowengine/lib/Settings/Section.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/workflowengine/lib/Settings/Section.php b/apps/workflowengine/lib/Settings/Section.php index 031e9438d9a..3ec3c22dce0 100644 --- a/apps/workflowengine/lib/Settings/Section.php +++ b/apps/workflowengine/lib/Settings/Section.php @@ -23,6 +23,7 @@ namespace OCA\WorkflowEngine\Settings; +use OCA\WorkflowEngine\AppInfo\Application; use OCP\IL10N; use OCP\IURLGenerator; use OCP\Settings\IIconSection; @@ -67,6 +68,6 @@ class Section implements IIconSection { * {@inheritdoc} */ public function getIcon() { - return $this->url->imagePath('core', 'actions/tag.svg'); + return $this->url->imagePath(Application::APP_ID, 'app-dark.svg'); } } |