Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Commit

Permalink
Fix wrong icon being used for appearance tab in space preferences dia…
Browse files Browse the repository at this point in the history
…log (#7570)
  • Loading branch information
t3chguy committed Jan 19, 2022
1 parent 336e1ae commit aac5964
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions res/css/views/dialogs/_SpacePreferencesDialog.scss
Original file line number Diff line number Diff line change
Expand Up @@ -44,3 +44,7 @@ limitations under the License.
}
}
}

.mx_SpacePreferencesDialog_appearanceIcon::before {
mask-image: url('$(res)/img/element-icons/settings/appearance.svg');
}
2 changes: 1 addition & 1 deletion src/components/views/dialogs/SpacePreferencesDialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ const SpacePreferencesDialog: React.FC<IProps> = ({ space, initialTabId, onFinis
new Tab(
SpacePreferenceTab.Appearance,
_td("Appearance"),
"mx_RoomSettingsDialog_notificationsIcon",
"mx_SpacePreferencesDialog_appearanceIcon",
<SpacePreferencesAppearanceTab space={space} />,
),
];
Expand Down

0 comments on commit aac5964

Please sign in to comment.