mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-21 10:45:20 -04:00
26 lines
812 B
TypeScript
26 lines
812 B
TypeScript
/*
|
|
* SPDX-FileCopyrightText: 2021 The HedgeDoc developers (see AUTHORS file)
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
import React from 'react'
|
|
import { Alert } from 'react-bootstrap'
|
|
import { Trans, useTranslation } from 'react-i18next'
|
|
import { InternalLink } from '../common/links/internal-link'
|
|
import { ShowIf } from '../common/show-if/show-if'
|
|
import { SimpleAlertProps } from '../common/simple-alert/simple-alert-props'
|
|
|
|
export const InvalidYamlAlert: React.FC<SimpleAlertProps> = ({ show }) => {
|
|
useTranslation()
|
|
|
|
return (
|
|
<ShowIf condition={show}>
|
|
<Alert variant='warning' dir='auto'>
|
|
<Trans i18nKey='editor.invalidYaml'>
|
|
<InternalLink text='yaml-metadata' href='/n/yaml-metadata' className='text-primary' />
|
|
</Trans>
|
|
</Alert>
|
|
</ShowIf>
|
|
)
|
|
}
|