Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
7 changes: 1 addition & 6 deletions apps/meteor/client/views/admin/viewLogs/AnalyticsReports.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,7 @@ const AnalyticsReports = () => {
return (
<Box display='flex' flexDirection='column' overflow='hidden' height='100%'>
<Callout title={t('Server_logs_access_has_changed_callout_title')} mbe={16}>
<p>
<MarkdownText
variant='inline'
content={t('Server_logs_access_has_changed_callout_description', { docsUrl: links.go.logsDocs })}
/>
</p>
<MarkdownText variant='inline' content={t('Server_logs_access_has_changed_callout_description', { docsUrl: links.go.logsDocs })} />
</Callout>
<Box backgroundColor='light' p={20} pbe={28} mbe={16} borderRadius={4}>
<Box display='flex' flexDirection='row' alignItems='center' mbe={20}>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -99,11 +99,7 @@ const CannedResponseForm = () => {
)}
</Field>
<Field>
<Controller
name='tags'
control={control}
render={({ field: { value, onChange } }) => <Tags handler={onChange} tags={value as unknown as string[]} />} // FIXME: fix types
/>
<Controller name='tags' control={control} render={({ field: { value, onChange } }) => <Tags handler={onChange} tags={value} />} />
</Field>
{(hasManagerPermission || hasMonitorPermission) && (
<>
Expand Down
Loading