Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Only show a preview of the Headline in Organizations list #1610

Merged
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@
v-if="scope.row.headline || scope.row.description"
class="text-sm h-full flex items-center text-gray-900"
>
{{ scope.row.headline || scope.row.description }}
{{ truncateText((scope.row.headline || scope.row.description)) }}
jobayer12 marked this conversation as resolved.
Show resolved Hide resolved
</span>
<span
v-else
Expand Down Expand Up @@ -838,6 +838,13 @@ const onTableMouseLeft = () => {
isScrollbarVisible.value = isCursorDown.value;
};

const truncateText = (text, characters = 200, suffix = '') => {
if (text.length > characters) {
return `${text.substring(0, characters)}` + suffix;
}
return text;
}

jobayer12 marked this conversation as resolved.
Show resolved Hide resolved
const emailsColumnWidth = computed(() => {
let maxTabWidth = 0;
organizations.value.forEach((row) => {
Expand Down
Loading