Fix wrong icon being used for appearance tab in space preferences dialog (#7570)

pull/21833/head
Michael Telatynski 2022-01-19 00:56:49 +00:00 committed by GitHub
parent 336e1ae3b6
commit aac5964121
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 1 deletions

View File

@ -44,3 +44,7 @@ limitations under the License.
} }
} }
} }
.mx_SpacePreferencesDialog_appearanceIcon::before {
mask-image: url('$(res)/img/element-icons/settings/appearance.svg');
}

View File

@ -73,7 +73,7 @@ const SpacePreferencesDialog: React.FC<IProps> = ({ space, initialTabId, onFinis
new Tab( new Tab(
SpacePreferenceTab.Appearance, SpacePreferenceTab.Appearance,
_td("Appearance"), _td("Appearance"),
"mx_RoomSettingsDialog_notificationsIcon", "mx_SpacePreferencesDialog_appearanceIcon",
<SpacePreferencesAppearanceTab space={space} />, <SpacePreferencesAppearanceTab space={space} />,
), ),
]; ];