mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-12-28 16:08:23 +00:00
Knowledge base added (#145)
* Fixed some misc UI issues * Minor fixes * Added knowledge base content
This commit is contained in:
parent
8069cbc54a
commit
c703ac4319
@ -24,11 +24,6 @@ const LANDING_STATES = [
|
||||
'Create a service to bring in metadata. Click Settings -> Services to explore available services.',
|
||||
route: ROUTES.SERVICES,
|
||||
},
|
||||
{
|
||||
title: 'Knowledgebase',
|
||||
description:
|
||||
'Donec tempus eu dolor non vehicula. Etiam malesuada, sapien ac euismod condimentum.',
|
||||
},
|
||||
];
|
||||
|
||||
const MyDataHeader: FunctionComponent<Props> = ({
|
||||
@ -115,6 +110,26 @@ const MyDataHeader: FunctionComponent<Props> = ({
|
||||
<p>{getFormattedDescription(d.description)}</p>
|
||||
</div>
|
||||
))}
|
||||
<div className="tw-card tw-p-3 tw-w-72">
|
||||
<p className="tw-font-medium tw-mb-1">Knowledgebase</p>
|
||||
<p>
|
||||
Check our{' '}
|
||||
<a
|
||||
className="link-text"
|
||||
href="https://docs.open-metadata.org/"
|
||||
rel="noopener noreferrer"
|
||||
target="_blank">
|
||||
docs
|
||||
</a>{' '}
|
||||
for documentation and try out the{' '}
|
||||
<span
|
||||
className="link-text"
|
||||
onClick={() => handleRouting(ROUTES.SWAGGER)}>
|
||||
APIs
|
||||
</span>{' '}
|
||||
here.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
);
|
||||
|
||||
@ -151,11 +151,13 @@ const MyDataPage: React.FC = (): React.ReactElement => {
|
||||
searchText="*"
|
||||
showResultCount={filter && data.length > 0 ? true : false}
|
||||
totalValue={totalNumberOfValue}>
|
||||
<MyDataHeader
|
||||
countAssets={countAssets}
|
||||
countServices={countServices}
|
||||
/>
|
||||
{getTabs()}
|
||||
<>
|
||||
<MyDataHeader
|
||||
countAssets={countAssets}
|
||||
countServices={countServices}
|
||||
/>
|
||||
{getTabs()}
|
||||
</>
|
||||
</SearchedData>
|
||||
)}
|
||||
</>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user