Skip to content

Commit

Permalink
fix(results): crash when accessor contains a dot
Browse files Browse the repository at this point in the history
  • Loading branch information
baptisteArno committed Aug 11, 2022
1 parent 823793a commit 361092f
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions apps/builder/components/results/ResultsTable/ResultsTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -120,9 +120,14 @@ export const ResultsTable = ({
</HStack>
),
cell: (info) => {
const value = info.getValue() as CellValueType | undefined
if (!value) return
return value.element || value.plainText || ''
try {
const value = info?.getValue() as CellValueType | undefined
if (!value) return
return value.element || value.plainText || ''
} catch (err) {
console.error(err)
return
}
},
})),
{
Expand Down

5 comments on commit 361092f

@vercel
Copy link

@vercel vercel bot commented on 361092f Aug 11, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@vercel
Copy link

@vercel vercel bot commented on 361092f Aug 11, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@vercel
Copy link

@vercel vercel bot commented on 361092f Aug 11, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

docs – ./apps/docs

docs-typebot-io.vercel.app
docs-git-main-typebot-io.vercel.app
docs.typebot.io

@vercel
Copy link

@vercel vercel bot commented on 361092f Aug 11, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

viewer-v2-alpha – ./apps/viewer

8jours.top
bt.id8rs.com
bot.aws.bj
am.nigerias.io
247987.com
bot.aipr.kr
sat.cr8.ai
yobot.me
finplex.be
vhpage.cr8.ai
ar.nigerias.io
an.nigerias.io
apr.nigerias.io
bot.artiweb.app
apo.nigerias.io
aso.nigerias.io
bot.lalmon.com
chat.sureb4.com
ticketfute.com
eventhub.com.au
games.klujo.com
sakuranembro.it
typebot.aloe.do
bot.piccinato.co
bot.upfunnel.art
clo.closeer.work
feedback.ofx.one
kw.wpwakanda.com
rdhs.digienge.io
faqs.nigerias.io
stan.vselise.com
voicehelp.cr8.ai
typebot.aloe.bot
bot.maitempah.com
bot.agfunnel.tech
app.chatforms.net
fmm.wpwakanda.com
bot.phuonghub.com
gentleman-shop.fr
k1.kandabrand.com
lb.ticketfute.com
ov1.wpwakanda.com
ov3.wpwakanda.com
ov2.wpwakanda.com
andreimayer.com.br
1988.bouclidom.com
dicanatural.online
bot.neferlopez.com
goalsettingbot.com
cares.urlabout.me
survey.digienge.io
rdhs06.digienge.io
this-is-a-test.com
zap.techadviser.in
bot.digitalbled.com
carsalesenquiry.com
forms.webisharp.com
bot.eventhub.com.au
order.maitempah.com
survey1.digienge.io
quest.wpwakanda.com
typebot.stillio.com
bium.gratirabbit.com
bot.ansuraniphone.my
chat.hayurihijab.com
connect.growthguy.in
bot.cotemeuplano.com
get.freebotoffer.xyz
click.sevenoways.com
abutton.wpwakanda.com
bbutton.wpwakanda.com
aidigitalmarketing.kr
bot.meuesocial.com.br
bot.incusservices.com
cdd.searchcube.com.sg
sbutton.wpwakanda.com
bbutton.wpwwakanda.com
apply.ansuraniphone.my
form.searchcube.com.sg
chat.missarkansas.org
c23111azqw.nigerias.io
gcase.barrettamario.it
info.clickasuransi.com
kodawariab736.skeep.it
felipewelington.com.br
83242573.actualizar.xyz
view.onlinebotdemo.xyz
report.gratirabbit.com
bot.upgradesolutions.eu
mainmenu.diddancing.com
resume.gratirabbit.com
bot.blackboxtips.com.br
signup.hypemarketing.in
subfooter.wpwakanda.com
survey.hypemarketing.in
aibot.angrybranding.co.uk
91181264.your-access.one
hunterbot.saleshunter.ai
type.opaulovieira.com.br
form.sergiolimajr.com.br

@vercel
Copy link

@vercel vercel bot commented on 361092f Aug 11, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

builder-v2 – ./apps/builder

builder-v2-git-main-typebot-io.vercel.app
app.typebot.io
builder-v2-typebot-io.vercel.app

Please sign in to comment.