mirror of
https://github.com/morpheus65535/bazarr
synced 2024-12-22 15:54:26 +00:00
Fixed settings profile style button light theme
This commit is contained in:
parent
9fd1da7fea
commit
ff8fd8c9a4
1 changed files with 4 additions and 1 deletions
|
@ -132,6 +132,8 @@ const Table: FunctionComponent = () => {
|
||||||
<Action
|
<Action
|
||||||
label="Edit Profile"
|
label="Edit Profile"
|
||||||
icon={faWrench}
|
icon={faWrench}
|
||||||
|
c="gray"
|
||||||
|
variant="dark"
|
||||||
onClick={() => {
|
onClick={() => {
|
||||||
modals.openContextModal(ProfileEditModal, {
|
modals.openContextModal(ProfileEditModal, {
|
||||||
languages,
|
languages,
|
||||||
|
@ -142,8 +144,9 @@ const Table: FunctionComponent = () => {
|
||||||
></Action>
|
></Action>
|
||||||
<Action
|
<Action
|
||||||
label="Remove"
|
label="Remove"
|
||||||
|
variant="dark"
|
||||||
icon={faTrash}
|
icon={faTrash}
|
||||||
color="red"
|
c="red"
|
||||||
onClick={() => action.remove(row.index)}
|
onClick={() => action.remove(row.index)}
|
||||||
></Action>
|
></Action>
|
||||||
</Group>
|
</Group>
|
||||||
|
|
Loading…
Reference in a new issue