Skip to content

Commit acc47c3

Browse files
committed
Minor visual adjustments & closing #23
1 parent 58bff91 commit acc47c3

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

admin/src/components/MultiSelectIcon/index.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ const MultiSelectIcon: React.FC = () => {
1717
<IconBox
1818
justifyContent="center"
1919
alignItems="center"
20-
width={8}
21-
height={7}
20+
width={7}
21+
height={6}
2222
hasRadius
2323
aria-hidden>
2424
<CheckIcon />

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "strapi-plugin-multi-select",
3-
"version": "2.1.0",
3+
"version": "2.1.1",
44
"description": "A strapi custom field for selecting multiple options from a provided list of items.",
55
"keywords": [
66
"strapi",

server/src/register.ts

+4
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,9 @@ export const register = ({ strapi }: { strapi: Core.Strapi }) => {
66
name: 'multi-select',
77
plugin: PLUGIN_ID,
88
type: 'json',
9+
inputSize: {
10+
default: 12,
11+
isResizable: true,
12+
}
913
});
1014
};

0 commit comments

Comments
 (0)