Remove border style

This commit is contained in:
christian-byrne
2025-01-18 16:22:49 -07:00
parent a437fe90fc
commit a7cdb27d48

View File

@@ -17,19 +17,21 @@ onMounted(() => {
dialogStore.showDialog({
key: 'issue-report',
component: ReportIssuePanel,
title: 'Report an issue',
dialogComponentProps: {
onClose: () => router.push('/')
},
props: {
errorType: 'desktop',
defaultFields: ['SystemStats', 'Logs', 'Settings'],
extraFields: [
{
label: 'Desktop Version',
value: 'desktopVersion',
optIn: false,
data: { desktopVersion: '1.4.2' } // electronAPI().getVersion()
}
]
],
pt: { root: { class: 'border-none' } }
}
})
})