mirror of
https://github.com/makeplane/plane.git
synced 2026-07-12 05:21:14 +02:00
* chore: Updated mets information and updated the ssr for page and views in space * chore: updated opengraph in pages and views * chore: removed image in opengraph and twitter * chore: updated url name * typo: in intake layout
5 lines
144 B
TypeScript
5 lines
144 B
TypeScript
export const stripString = (str: string, length: number) => {
|
|
if (str.length <= length) return str;
|
|
return str.slice(0, length) + "...";
|
|
};
|