Skip to content

Commit 4af7582

Browse files
authored
Merge pull request #45 from grafana/src/build-errors-null
fix for build errors with undefined vs null
2 parents f80a8d7 + f445b2b commit 4af7582

File tree

5 files changed

+304
-304
lines changed

5 files changed

+304
-304
lines changed

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@
1414
"storybook:build": "build-storybook"
1515
},
1616
"dependencies": {
17-
"@grafana/data": "^7.4.1",
18-
"@grafana/runtime": "^7.4.1",
19-
"@grafana/toolkit": "^7.4.1",
17+
"@grafana/data": "^7.5.10",
18+
"@grafana/runtime": "^7.5.10",
19+
"@grafana/toolkit": "^7.5.10",
2020
"@grafana/tsconfig": "^1.0.0-rc1",
21-
"@grafana/ui": "^7.5.3",
21+
"@grafana/ui": "^7.5.10",
2222
"@types/chance": "^1.1.0",
2323
"@types/memoize-one": "^5.1.2",
2424
"@types/react-calendar": "^3.1.2",

src/components/DatePickerWithInput/DatePickerWithInput.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ export const DatePickerWithInput = (props: DatePickerWithInputProps) => {
2222
<Input
2323
type='date'
2424
placeholder='Date'
25-
css={null}
2625
value={formatDate(value || new Date())}
2726
onClick={() => setOpen(true)}
2827
onChange={() => {}}

src/components/DebounceInput/DebounceInput.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ export const DebounceInput = (props: DebounceInputProps) => {
2020

2121
return (
2222
<Input
23-
css={null}
2423
onChange={(ev) => setInput(ev.currentTarget.value)}
2524
value={input}
2625
{...rest}

src/components/Plugins/PluginSignatureBadge.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,4 +72,4 @@ function getSignatureDisplayModel(signature?: PluginSignatureStatus): BadgeProps
7272
return { text: 'Unsigned', icon: 'exclamation-triangle', color: 'red', tooltip: 'Unsigned external plugin' };
7373
}
7474

75-
PluginSignatureBadge.displayName = 'PluginSignatureBadge';
75+
PluginSignatureBadge.displayName = 'PluginSignatureBadge';

0 commit comments

Comments
 (0)