Skip to content

Commit f73ee22

Browse files
authored
Merge pull request #1045 from equinor/fix/show-selected-as-text-fix
Fix/show selected as text fix
2 parents 58a8d5d + aa19e11 commit f73ee22

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@equinor/amplify-component-lib",
3-
"version": "9.7.6",
3+
"version": "9.7.7",
44
"description": "Frontend Typescript components for the Amplify team",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",

src/molecules/Select/Select.types.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ interface MultiSelectBase<T extends SelectOptionRequired> {
2626
}
2727

2828
type MultiSelectWithSelectedAsText<T extends SelectOptionRequired> = {
29-
showSelectedAsText: true;
29+
showSelectedAsText: boolean;
3030
} & MultiSelectBase<T>;
3131

3232
type MultiSelectWithCustomValueComponent<T extends SelectOptionRequired> = {

0 commit comments

Comments
 (0)