Skip to content

Commit

Permalink
IBX-1033: Removed icons in user create/edit (#201)
Browse files Browse the repository at this point in the history
  • Loading branch information
dew326 authored Jan 20, 2022
1 parent a209688 commit 1961dfd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions src/lib/Menu/UserCreateRightSidebarBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public function createStructure(array $options): ItemInterface
'class' => 'ibexa-btn--trigger',
'data-click' => '#ezplatform_content_forms_user_create_create',
],
'extras' => ['icon' => 'publish'],
'extras' => ['primary' => true],
]
),
self::ITEM__CANCEL => $this->createMenuItem(
Expand All @@ -64,7 +64,6 @@ public function createStructure(array $options): ItemInterface
'class' => 'ibexa-btn--trigger',
'data-click' => '#ezplatform_content_forms_user_create_cancel',
],
'extras' => ['icon' => 'circle-close'],
]
),
]);
Expand Down
3 changes: 1 addition & 2 deletions src/lib/Menu/UserEditRightSidebarBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public function createStructure(array $options): ItemInterface
'class' => 'ibexa-btn--trigger',
'data-click' => '#ezplatform_content_forms_user_update_update',
],
'extras' => ['icon' => 'publish'],
'extras' => ['primary' => true],
]
),
self::ITEM__CANCEL => $this->createMenuItem(
Expand All @@ -64,7 +64,6 @@ public function createStructure(array $options): ItemInterface
'class' => 'ibexa-btn--trigger',
'data-click' => '#ezplatform_content_forms_user_update_cancel',
],
'extras' => ['icon' => 'circle-close'],
]
),
]);
Expand Down

0 comments on commit 1961dfd

Please sign in to comment.