From bbc5ab4e631bcf821a4953bd4a689de02907e71d Mon Sep 17 00:00:00 2001 From: William Grant Date: Mon, 17 Oct 2022 16:37:32 +1100 Subject: [PATCH] fix: made export logs button solid --- ts/components/settings/section/CategoryHelp.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ts/components/settings/section/CategoryHelp.tsx b/ts/components/settings/section/CategoryHelp.tsx index d80a0133a..2cd2ab041 100644 --- a/ts/components/settings/section/CategoryHelp.tsx +++ b/ts/components/settings/section/CategoryHelp.tsx @@ -1,6 +1,6 @@ import { ipcRenderer, shell } from 'electron'; import React from 'react'; -import { SessionButtonShape } from '../../basic/SessionButton'; +import { SessionButtonShape, SessionButtonType } from '../../basic/SessionButton'; import { SessionSettingButtonItem, SessionSettingsTitleWithLink } from '../SessionSettingListItem'; @@ -13,6 +13,7 @@ export const SettingsCategoryHelp = (props: { hasPassword: boolean | null }) => ipcRenderer.send('show-debug-log'); }} buttonShape={SessionButtonShape.Square} + buttonType={SessionButtonType.Solid} buttonText={window.i18n('showDebugLog')} title={window.i18n('reportIssue')} description={window.i18n('shareBugDetails')}