mirror of
https://github.com/makeplane/plane.git
synced 2026-07-12 21:40:18 +02:00
* chore: pi empty state * fix: response change handled * fix: handled api failure * fix: formatted ai messages * fix: reverted the pi pallete * fix: integrated models api * fix: disabled regenerating new chat * fix: page loading fixed * fix: dynamically imported markdown * fix: removed extras * fix: minor css * fix: handled pi chat in bulk ops
14 lines
342 B
TypeScript
14 lines
342 B
TypeScript
export const hideFloatingBot = () => {
|
|
const floatingBot = document.getElementById("floating-bot");
|
|
if (floatingBot) {
|
|
floatingBot.style.display = "none";
|
|
}
|
|
};
|
|
|
|
export const showFloatingBot = () => {
|
|
const floatingBot = document.getElementById("floating-bot");
|
|
if (floatingBot) {
|
|
floatingBot.style.display = "block";
|
|
}
|
|
};
|