mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-07-19 15:31:59 +00:00
fix glossary default selector in search index application while installation (#15024)
This commit is contained in:
parent
eb501c1996
commit
3740a7b346
@ -11,8 +11,9 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
.app-marketplace-avatar > img {
|
||||
width: 64px;
|
||||
height: 64px;
|
||||
width: 54px;
|
||||
height: 54px;
|
||||
object-fit: contain;
|
||||
}
|
||||
|
||||
.app-card-divider {
|
||||
|
@ -19,6 +19,7 @@ import React, { useCallback, useEffect, useMemo, useState } from 'react';
|
||||
import { useTranslation } from 'react-i18next';
|
||||
import { useHistory } from 'react-router-dom';
|
||||
import TestSuiteScheduler from '../../components/AddDataQualityTest/components/TestSuiteScheduler';
|
||||
import applicationSchemaClassBase from '../../components/Applications/AppDetails/ApplicationSchemaClassBase';
|
||||
import AppInstallVerifyCard from '../../components/Applications/AppInstallVerifyCard/AppInstallVerifyCard.component';
|
||||
import ErrorPlaceHolder from '../../components/common/ErrorWithPlaceholder/ErrorPlaceHolder';
|
||||
import FormBuilder from '../../components/common/FormBuilder/FormBuilder';
|
||||
@ -79,7 +80,8 @@ const AppInstall = () => {
|
||||
});
|
||||
setAppData(data);
|
||||
|
||||
const schema = await import(`../../utils/ApplicationSchemas/${fqn}.json`);
|
||||
const schema = await applicationSchemaClassBase.importSchema(fqn);
|
||||
|
||||
setJsonSchema(schema);
|
||||
} catch (error) {
|
||||
showErrorToast(error as AxiosError);
|
||||
|
@ -61,6 +61,7 @@
|
||||
"searchIndex",
|
||||
"user",
|
||||
"team",
|
||||
"glossary",
|
||||
"glossaryTerm",
|
||||
"mlmodel",
|
||||
"tag",
|
||||
|
Loading…
x
Reference in New Issue
Block a user