diff options
author | Anderson Shindy Oki <[email protected]> | 2024-06-11 19:21:18 +0900 |
---|---|---|
committer | GitHub <[email protected]> | 2024-06-11 06:21:18 -0400 |
commit | ff8fd8c9a43efea33a77d2e13b90a674672166ab (patch) | |
tree | 3d32124c814b2a13e86b43d8003016c878028929 /frontend/src | |
parent | 9fd1da7fead655affa90596ac514c5b2d662f2c7 (diff) | |
download | bazarr-ff8fd8c9a43efea33a77d2e13b90a674672166ab.tar.gz bazarr-ff8fd8c9a43efea33a77d2e13b90a674672166ab.zip |
Fixed settings profile style button light theme
Diffstat (limited to 'frontend/src')
-rw-r--r-- | frontend/src/pages/Settings/Languages/table.tsx | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/frontend/src/pages/Settings/Languages/table.tsx b/frontend/src/pages/Settings/Languages/table.tsx index 0ba64c637..08b1bace5 100644 --- a/frontend/src/pages/Settings/Languages/table.tsx +++ b/frontend/src/pages/Settings/Languages/table.tsx @@ -132,6 +132,8 @@ const Table: FunctionComponent = () => { <Action label="Edit Profile" icon={faWrench} + c="gray" + variant="dark" onClick={() => { modals.openContextModal(ProfileEditModal, { languages, @@ -142,8 +144,9 @@ const Table: FunctionComponent = () => { ></Action> <Action label="Remove" + variant="dark" icon={faTrash} - color="red" + c="red" onClick={() => action.remove(row.index)} ></Action> </Group> |