BackupsStorageAlert.tsx 478 B

1234567891011121314
  1. import { Admonition } from 'ui-patterns/admonition'
  2. export const BackupsStorageAlert = () => {
  3. return (
  4. <Admonition
  5. type="default"
  6. layout="horizontal"
  7. title="Storage objects are not included"
  8. description="Database backups do not include objects stored via the Storage API, as the database only
  9. includes metadata about these objects. Restoring an old backup does not restore objects that
  10. have been deleted since then."
  11. />
  12. )
  13. }