mirror of
https://github.com/makeplane/plane.git
synced 2026-07-12 21:40:18 +02:00
6 lines
330 B
TypeScript
6 lines
330 B
TypeScript
|
|
export const getDescriptionPlaceholder = (isFocused: boolean, description: string | undefined): string => {
|
||
|
|
const isDescriptionEmpty = !description || description === "<p></p>" || description.trim() === "";
|
||
|
|
if (!isDescriptionEmpty || isFocused) return "Press '/' for commands...";
|
||
|
|
else return "Click to add description";
|
||
|
|
};
|