mirror of
https://github.com/stashapp/stash.git
synced 2025-12-18 04:44:37 +03:00
Fix button spacing, fix gender/country height (#2220)
* Fix button spacing, fix gender/country height, add tombstones * Remove Tombstones
This commit is contained in:
committed by
GitHub
parent
184117ea39
commit
c5cd0e1c9c
@@ -2,6 +2,7 @@ import { Button, Modal } from "react-bootstrap";
|
||||
import React, { useState } from "react";
|
||||
import { FormattedMessage, useIntl } from "react-intl";
|
||||
import { ImageInput } from "src/components/Shared";
|
||||
import cx from "classnames";
|
||||
|
||||
interface IProps {
|
||||
objectName?: string;
|
||||
@@ -20,6 +21,7 @@ interface IProps {
|
||||
onClearBackImage?: () => void;
|
||||
acceptSVG?: boolean;
|
||||
customButtons?: JSX.Element;
|
||||
classNames?: string;
|
||||
}
|
||||
|
||||
export const DetailsEditNavbar: React.FC<IProps> = (props: IProps) => {
|
||||
@@ -127,7 +129,7 @@ export const DetailsEditNavbar: React.FC<IProps> = (props: IProps) => {
|
||||
}
|
||||
|
||||
return (
|
||||
<div className="details-edit">
|
||||
<div className={cx("details-edit", props.classNames)}>
|
||||
{renderEditButton()}
|
||||
<ImageInput
|
||||
isEditing={props.isEditing}
|
||||
|
||||
Reference in New Issue
Block a user