Skip to content

Commit

Permalink
fix(versioning): add year format for form version (#354)
Browse files Browse the repository at this point in the history
* added implementation guide

* cleanup

* adjust styling

* adjust logic

* add route

* cleanup and upload files

* add table from MUI and clean up data

* Update index.tsx

* add target blank logic

* Update index.tsx

* Update index.tsx

* add guide type

* cleanup using native table

* add abp1 v2 logic

* Update index.tsx

* change versioning

* Update index.tsx

* Update index.tsx
  • Loading branch information
jdinh8124 authored Feb 1, 2024
1 parent e0c9db0 commit e5f26ea
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
14 changes: 7 additions & 7 deletions src/services/ui/src/components/Webform/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,31 +19,31 @@ export const Webforms = () => {
<div className="flex-1 space-x-5">
<Link
path="/webform/:id/:version"
params={{ id: "abp1", version: 1 }}
params={{ id: "abp1", version: 202401 }}
>
ABP 1 v1
ABP 1 (Jan 2024)
</Link>
<Link
path="/webform/:id/:version"
params={{ id: "abp1", version: 2 }}
params={{ id: "abp1", version: 202402 }}
>
ABP 1 v2
ABP 1 (Feb 2024)
</Link>
<Link
path="/webform/:id/:version"
params={{ id: "abp3", version: 1 }}
params={{ id: "abp3", version: 202401 }}
>
ABP 3
</Link>
<Link
path="/webform/:id/:version"
params={{ id: "abp3_1", version: 1 }}
params={{ id: "abp3_1", version: 202401 }}
>
ABP 3.1
</Link>
<Link
path="/webform/:id/:version"
params={{ id: "abp10", version: 1 }}
params={{ id: "abp10", version: 202401 }}
>
ABP 10
</Link>
Expand Down

0 comments on commit e5f26ea

Please sign in to comment.