File tree 2 files changed +2
-2
lines changed
config-page/components/api-editor
modules/application/pages/settings
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -345,7 +345,7 @@ export const APIEditor = (props: CP_API_EDITOR.Props) => {
345
345
) ;
346
346
apiExecuteButton = (
347
347
< Dropdown overlay = { dropdownMenu } >
348
- < Button { ...rest } className = "flex ml-3" >
348
+ < Button { ...rest } className = "inline- flex items-center ml-3" >
349
349
{ text }
350
350
< ErdaIcon type = "caret-down" className = "ml-1" />
351
351
</ Button >
Original file line number Diff line number Diff line change @@ -300,7 +300,7 @@ export const PureAppSettings = () => {
300
300
let dataSource = settingSource ;
301
301
if ( ! isEmpty ( appDetail ) ) {
302
302
const { mode } = appDetail ;
303
- dataSource = settingSource . filter ( ( item ) => showMap [ mode ] . includes ( item . groupKey ) ) ;
303
+ dataSource = settingSource . filter ( ( item ) => showMap [ mode ] ? .includes ( item . groupKey ) ) ;
304
304
}
305
305
306
306
return < SettingTabs className = "app-settings-main" dataSource = { dataSource } /> ;
You can’t perform that action at this time.
0 commit comments