diff --git a/openmetadata-ui/src/main/resources/ui/src/@types/quill-emoji.d.ts b/openmetadata-ui/src/main/resources/ui/src/@types/quill-emoji.d.ts index 33195770fe1..319e8c03de8 100644 --- a/openmetadata-ui/src/main/resources/ui/src/@types/quill-emoji.d.ts +++ b/openmetadata-ui/src/main/resources/ui/src/@types/quill-emoji.d.ts @@ -1 +1,13 @@ +/* + * Copyright 2022 Collate + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * http://www.apache.org/licenses/LICENSE-2.0 + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ declare module 'quill-emoji'; diff --git a/openmetadata-ui/src/main/resources/ui/src/@types/quilljs-markdown.d.ts b/openmetadata-ui/src/main/resources/ui/src/@types/quilljs-markdown.d.ts index 018a1ebf157..1b94b7393b9 100644 --- a/openmetadata-ui/src/main/resources/ui/src/@types/quilljs-markdown.d.ts +++ b/openmetadata-ui/src/main/resources/ui/src/@types/quilljs-markdown.d.ts @@ -1 +1,13 @@ +/* + * Copyright 2022 Collate + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * http://www.apache.org/licenses/LICENSE-2.0 + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ declare module 'quilljs-markdown'; diff --git a/openmetadata-ui/src/main/resources/ui/src/@types/web-analytics.d.ts b/openmetadata-ui/src/main/resources/ui/src/@types/web-analytics.d.ts index 9e54343c428..b5bf497d920 100644 --- a/openmetadata-ui/src/main/resources/ui/src/@types/web-analytics.d.ts +++ b/openmetadata-ui/src/main/resources/ui/src/@types/web-analytics.d.ts @@ -1,3 +1,15 @@ +/* + * Copyright 2022 Collate + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * http://www.apache.org/licenses/LICENSE-2.0 + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ declare module '@analytics/session-utils' { export type Session = { id: string; diff --git a/openmetadata-ui/src/main/resources/ui/src/ErrorBoundry/ErrorBoundry.tsx b/openmetadata-ui/src/main/resources/ui/src/ErrorBoundry/ErrorBoundry.tsx index 0557280b2c9..450d168e480 100644 --- a/openmetadata-ui/src/main/resources/ui/src/ErrorBoundry/ErrorBoundry.tsx +++ b/openmetadata-ui/src/main/resources/ui/src/ErrorBoundry/ErrorBoundry.tsx @@ -1,3 +1,15 @@ +/* + * Copyright 2022 Collate + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * http://www.apache.org/licenses/LICENSE-2.0 + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ import React from 'react'; import { ErrorBoundary } from 'react-error-boundary'; import { useHistory } from 'react-router-dom'; diff --git a/openmetadata-ui/src/main/resources/ui/src/ErrorBoundry/ErrorFallback.tsx b/openmetadata-ui/src/main/resources/ui/src/ErrorBoundry/ErrorFallback.tsx index 8283324086a..acdc32935ea 100644 --- a/openmetadata-ui/src/main/resources/ui/src/ErrorBoundry/ErrorFallback.tsx +++ b/openmetadata-ui/src/main/resources/ui/src/ErrorBoundry/ErrorFallback.tsx @@ -1,3 +1,15 @@ +/* + * Copyright 2022 Collate + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * http://www.apache.org/licenses/LICENSE-2.0 + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ import { Button, Result } from 'antd'; import React from 'react'; import { FallbackProps } from 'react-error-boundary'; diff --git a/openmetadata-ui/src/main/resources/ui/src/antlr/SplitListener.js b/openmetadata-ui/src/main/resources/ui/src/antlr/SplitListener.js index 76568e8853b..22cb216b1e4 100644 --- a/openmetadata-ui/src/main/resources/ui/src/antlr/SplitListener.js +++ b/openmetadata-ui/src/main/resources/ui/src/antlr/SplitListener.js @@ -1,3 +1,15 @@ +/* + * Copyright 2022 Collate + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * http://www.apache.org/licenses/LICENSE-2.0 + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ import FqnListener from '../generated/antlr/FqnListener'; export default class SplitListener extends FqnListener { diff --git a/openmetadata-ui/src/main/resources/ui/src/components/ActivityFeed/ActivityFeedList/ActivityFeedList.util.tsx b/openmetadata-ui/src/main/resources/ui/src/components/ActivityFeed/ActivityFeedList/ActivityFeedList.util.tsx index 4dbbeff9835..25cd20a172d 100644 --- a/openmetadata-ui/src/main/resources/ui/src/components/ActivityFeed/ActivityFeedList/ActivityFeedList.util.tsx +++ b/openmetadata-ui/src/main/resources/ui/src/components/ActivityFeed/ActivityFeedList/ActivityFeedList.util.tsx @@ -1,3 +1,15 @@ +/* + * Copyright 2022 Collate + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * http://www.apache.org/licenses/LICENSE-2.0 + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ import React from 'react'; import { FeedFilter } from '../../../enums/mydata.enum'; import { ThreadType } from '../../../generated/entity/feed/thread'; diff --git a/openmetadata-ui/src/main/resources/ui/src/components/ActivityFeed/ActivityThreadPanel/ActivityThread.mock.ts b/openmetadata-ui/src/main/resources/ui/src/components/ActivityFeed/ActivityThreadPanel/ActivityThread.mock.ts index be103dc1d3b..2c400d4e513 100644 --- a/openmetadata-ui/src/main/resources/ui/src/components/ActivityFeed/ActivityThreadPanel/ActivityThread.mock.ts +++ b/openmetadata-ui/src/main/resources/ui/src/components/ActivityFeed/ActivityThreadPanel/ActivityThread.mock.ts @@ -1,3 +1,15 @@ +/* + * Copyright 2022 Collate + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * http://www.apache.org/licenses/LICENSE-2.0 + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ export const mockThreadData = [ { id: '465b2dfb-300e-45f5-a1a6-e19c6225e9e7', diff --git a/openmetadata-ui/src/main/resources/ui/src/components/ActivityFeed/Shared/Badge.less b/openmetadata-ui/src/main/resources/ui/src/components/ActivityFeed/Shared/Badge.less index 717314bcbc5..fc23c2546ce 100644 --- a/openmetadata-ui/src/main/resources/ui/src/components/ActivityFeed/Shared/Badge.less +++ b/openmetadata-ui/src/main/resources/ui/src/components/ActivityFeed/Shared/Badge.less @@ -1,3 +1,15 @@ +/* +* Copyright 2022 Collate +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* http://www.apache.org/licenses/LICENSE-2.0 +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ @background: #fffdf8; @border: #ffc143; @text: #37352f; diff --git a/openmetadata-ui/src/main/resources/ui/src/components/AddGlossary/AddGlossary.interface.ts b/openmetadata-ui/src/main/resources/ui/src/components/AddGlossary/AddGlossary.interface.ts index a6138eb18a8..eafa9575d0e 100644 --- a/openmetadata-ui/src/main/resources/ui/src/components/AddGlossary/AddGlossary.interface.ts +++ b/openmetadata-ui/src/main/resources/ui/src/components/AddGlossary/AddGlossary.interface.ts @@ -1,3 +1,15 @@ +/* + * Copyright 2022 Collate + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * http://www.apache.org/licenses/LICENSE-2.0 + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ import { LoadingState } from 'Models'; import { CreateGlossary } from '../../generated/api/data/createGlossary'; import { TitleBreadcrumbProps } from '../common/title-breadcrumb/title-breadcrumb.interface'; diff --git a/openmetadata-ui/src/main/resources/ui/src/components/AddGlossaryTerm/AddGlossaryTerm.interface.ts b/openmetadata-ui/src/main/resources/ui/src/components/AddGlossaryTerm/AddGlossaryTerm.interface.ts index 067ca2ef5b1..61cf34e52a5 100644 --- a/openmetadata-ui/src/main/resources/ui/src/components/AddGlossaryTerm/AddGlossaryTerm.interface.ts +++ b/openmetadata-ui/src/main/resources/ui/src/components/AddGlossaryTerm/AddGlossaryTerm.interface.ts @@ -1,3 +1,15 @@ +/* + * Copyright 2022 Collate + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * http://www.apache.org/licenses/LICENSE-2.0 + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ import { LoadingState } from 'Models'; import { CreateGlossaryTerm } from '../../generated/api/data/createGlossaryTerm'; import { Glossary } from '../../generated/entity/data/glossary'; diff --git a/openmetadata-ui/src/main/resources/ui/src/components/AddIngestion/Steps/ConfigureIngestion.tsx b/openmetadata-ui/src/main/resources/ui/src/components/AddIngestion/Steps/ConfigureIngestion.tsx index bda70a14ac5..2a0afbde3a1 100644 --- a/openmetadata-ui/src/main/resources/ui/src/components/AddIngestion/Steps/ConfigureIngestion.tsx +++ b/openmetadata-ui/src/main/resources/ui/src/components/AddIngestion/Steps/ConfigureIngestion.tsx @@ -144,7 +144,7 @@ const ConfigureIngestion = ({ className="m-t-sm" initialValue={profileSampleType || ProfileSampleType.Percentage} label={t('label.profile-sample-type', { - type: 'Type', + type: t('label.type'), })} name="profileSample">