Skip to content

Commit

Permalink
missig i18l things
Browse files Browse the repository at this point in the history
  • Loading branch information
teallarson committed Jul 12, 2022
1 parent b0fee87 commit ea0c62a
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import { FormattedMessage } from "react-intl";

import { FieldTransform } from "core/request/AirbyteClient";

import { DiffVerb } from "../CatalogDiffModal";
Expand All @@ -18,7 +20,11 @@ export const DiffFieldTable: React.FC<DiffFieldTableProps> = ({ fieldTransforms,
<th>
<DiffHeader diffCount={fieldTransforms.length} diffVerb={diffVerb} diffType="field" />
</th>
{diffVerb === "changed" && <th>Data type</th>}
{diffVerb === "changed" && (
<th>
<FormattedMessage id="connection.updateSchema.dataType" />
</th>
)}
</tr>
</thead>
<tbody>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import { FormattedMessage } from "react-intl";

import { AirbyteCatalog, StreamTransform } from "core/request/AirbyteClient";

import { DiffVerb } from "../CatalogDiffModal";
Expand All @@ -20,8 +22,12 @@ export const DiffSection: React.FC<DiffSectionProps> = ({ streams, catalog, diff
<table>
<thead className={styles.sectionSubHeader}>
<tr>
<th>Namespace</th>
<th>Stream name</th>
<th>
<FormattedMessage id="connection.updateSchema.namespace" />
</th>
<th>
<FormattedMessage id="connection.updateSchema.name" />
</th>
<th />
</tr>
</thead>
Expand Down

0 comments on commit ea0c62a

Please sign in to comment.