Skip to content

Commit 302e3fc

Browse files
committed
Merge branch 'nextjs-tailwind' of https://github.com/input-output-hk/CHA-react-FE-template into nextjs-tailwind
2 parents e62bf25 + 493fc07 commit 302e3fc

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

starter_app/src/app/[table]/page.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ export default function TablePage(){
117117
/>
118118
<div className="flex gap-2">
119119
<Dropdown
120-
btnLabel={filterValues.length === 0 ? "Filter" : filterValues.length === 1 ? "Filter: " + filterValues[0] : "Filter: " + filterValues.length }
120+
btnLabel={filterValues.length === 0 ? "Filter" : filterValues.length === 1 ? "Filter: " + filterValues[0] : "Filter: " + filterValues.length + " Options" }
121121
btnIcon={{ svg: <Filter /> }}
122122
position='right'
123123
>
@@ -176,4 +176,4 @@ export default function TablePage(){
176176
</TableContainer>
177177
</div>
178178
)
179-
}
179+
}

starter_app/src/app/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ export default function Home() {
149149
]}
150150
/>
151151
<Dropdown
152-
btnLabel={filterValues.length === 0 ? "Filter" : filterValues.length === 1 ? "Filter: " + filterValues[0] : "Filter: " + filterValues.length }
152+
btnLabel={filterValues.length === 0 ? "Filter" : filterValues.length === 1 ? "Filter: " + filterValues[0] : "Filter: " + filterValues.length + " Options" }
153153
btnIcon={{ svg: <Filter /> }}>
154154
<>
155155
{dropdownOptions.map((i) =>

0 commit comments

Comments
 (0)