Skip to content

Commit f382ba2

Browse files
committed
upgrade to latest deps
1 parent 5daf914 commit f382ba2

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

MyApp.Client/src/components/Form.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ export const TextInput: FC<TextInputProps> = ({ status, id, type, className, pla
123123

124124
return (<div>
125125
{!useLabel ? null : <label htmlFor={id} className="block text-sm font-medium text-gray-700 dark:text-gray-200">{useLabel}</label>}
126-
<div className="mt-1 relative rounded-md shadow-sm">
126+
<div className="mt-1 relative">
127127
<input type={useType} className={classNames([input.base, ...cssClass(input.valid,input.invalid)])}
128128
id={id} name={id} placeholder={usePlaceholder} {...remaining} />
129129
{!hasErrorField ? null : <div className="absolute inset-y-0 right-0 pr-3 flex items-center pointer-events-none">
@@ -169,7 +169,7 @@ export const TextAreaInput: FC<TextAreaInputProps> = ({ status, id, className, p
169169

170170
return (<div>
171171
{!useLabel ? null : <label htmlFor={id} className="block text-sm font-medium text-gray-700 dark:text-gray-200">{useLabel}</label>}
172-
<div className="mt-1 relative rounded-md shadow-sm">
172+
<div className="mt-1 relative">
173173
<textarea className={classNames(['shadow-sm block w-full sm:text-sm rounded-md', ...cssClass(
174174
'text-gray-900 dark:text-gray-50 focus:ring-indigo-500 focus:border-indigo-500 border-gray-300 dark:border-gray-600',
175175
'text-red-900 focus:ring-red-500 focus:border-red-500 border-red-300')])}

MyApp/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@
77
"rerun:last": "npm run revert:last && npm run migrate"
88
},
99
"dependencies": {
10-
"@servicestack/client": "^2.1.6"
10+
"@servicestack/client": "^2.1.11"
1111
}
1212
}

0 commit comments

Comments
 (0)