* add manager change memberName and update inform UI

* change icon and some inform ui

* change for comment

* fix for comment
This commit is contained in:
gggaaallleee
2025-03-27 10:04:29 +08:00
committed by GitHub
parent 29a10c1389
commit cb29076e5b
25 changed files with 474 additions and 189 deletions

View File

@@ -17,13 +17,15 @@ export const useEditTextarea = ({
tip,
placeholder = '',
canEmpty = true,
valueRule
valueRule,
rows = 10
}: {
title: string;
tip?: string;
placeholder?: string;
canEmpty?: boolean;
valueRule?: (val: string) => string | void;
rows?: number;
}) => {
const { t } = useTranslation();
const { isOpen, onOpen, onClose } = useDisclosure();
@@ -105,7 +107,7 @@ export const useEditTextarea = ({
placeholder={placeholder}
autoFocus
maxLength={maxLength}
rows={10}
rows={rows}
bg={'myGray.50'}
/>
</ModalBody>