Skip to content

Commit

Permalink
Merge pull request #380 from l3vels/feat/sentiment-on-thread
Browse files Browse the repository at this point in the history
feat: Sentiment column on thread table
  • Loading branch information
Chkhikvadze authored Dec 12, 2023
2 parents 97b836a + 297a79e commit e1787c2
Show file tree
Hide file tree
Showing 4 changed files with 208 additions and 171 deletions.
8 changes: 4 additions & 4 deletions apps/ui/src/pages/Sessions/Session.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import Table from 'components/Table'
import Heading from 'share-ui/components/Heading/Heading'
import { useTranslation } from 'react-i18next'

import TextField from 'share-ui/components/TextField/TextField'
import {
StyledHeaderGroup,
StyledSectionTitle,
Expand All @@ -17,11 +16,10 @@ import { StyledTableWrapper } from 'plugins/contact/pages/Contact/Contacts'
import ComponentsWrapper from 'components/ComponentsWrapper/ComponentsWrapper'
import { useSession } from './useSession'
import SessionDropdown from './SessionDropdown'
import columnConfig from './columnConfig'

import { SetStateAction, useState } from 'react'
import DatePickerField from 'components/DatePicker/DatePicker'
import { Moment } from 'moment'

import { useColumn } from './columnConfig'

const Sessions = () => {
const { t } = useTranslation()
Expand All @@ -41,6 +39,8 @@ const Sessions = () => {
clearSelectedDays,
} = useSession()

const columnConfig = useColumn()

return (
<StyledSectionWrapper>
<StyledHeaderGroup className='header_group'>
Expand Down
Loading

0 comments on commit e1787c2

Please sign in to comment.