Skip to content

Commit

Permalink
Merge pull request #83 from ConductionNL/feauter/XW-79/PublicationDate
Browse files Browse the repository at this point in the history
feauter/XW-79/PublicationDate
  • Loading branch information
remko48 authored Sep 26, 2023
2 parents 6cf8e76 + 0f9af0c commit 301ab39
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ export const FiltersTemplate: React.FC<FiltersTemplateProps> = ({ isLoading }) =
<SelectSingle
options={TEMP_PUBLICATION_TYPES}
name="category"
placeholder="Onderwerp"
placeholder="Categorie"
defaultValue={TEMP_PUBLICATION_TYPES.find((option) => option.value === filters.Categorie)}
isClearable
{...{ register, errors, control }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export const TableResultsTemplate: React.FC<TableResultsTemplateProps> = ({ requ
<TableHeader className={styles.tableHeader}>
<TableRow>
<TableHeaderCell>Woo-verzoek</TableHeaderCell>
<TableHeaderCell>Onderwerp</TableHeaderCell>
<TableHeaderCell>Categorie</TableHeaderCell>
<TableHeaderCell>Publicatiedatum</TableHeaderCell>
<TableHeaderCell>Ontvangstdatum</TableHeaderCell>
<TableHeaderCell>Besluitdatum</TableHeaderCell>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ export const WOOItemDetailTemplate: React.FC<WOOItemDetailTemplateProps> = ({ wo

{getItems.data.Titel && (
<TableRow className={styles.tableRow}>
<TableCell>{t("Onderwerp")}</TableCell>
<TableCell>{getItems.data.Titel}</TableCell>
<TableCell>{t("Categorie")}</TableCell>
<TableCell>{getItems.data.Categorie ?? "-"}</TableCell>
</TableRow>
)}

Expand Down

0 comments on commit 301ab39

Please sign in to comment.