@checkstack/incident-frontend 0.3.8 → 0.3.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +12 -0
- package/package.json +1 -1
- package/src/components/IncidentEditor.tsx +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @checkstack/incident-frontend
|
|
2
2
|
|
|
3
|
+
## 0.3.9
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- d1324e6: Removed redundant inner scroll wrapper from IncidentEditor - Dialog now handles scrolling
|
|
8
|
+
- Updated dependencies [d1324e6]
|
|
9
|
+
- Updated dependencies [1f1f6c2]
|
|
10
|
+
- Updated dependencies [2c0822d]
|
|
11
|
+
- @checkstack/ui@0.4.0
|
|
12
|
+
- @checkstack/dashboard-frontend@0.3.8
|
|
13
|
+
- @checkstack/auth-frontend@0.5.3
|
|
14
|
+
|
|
3
15
|
## 0.3.8
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -55,7 +55,7 @@ export const IncidentEditor: React.FC<Props> = ({
|
|
|
55
55
|
const [description, setDescription] = useState("");
|
|
56
56
|
const [severity, setSeverity] = useState<IncidentSeverity>("major");
|
|
57
57
|
const [selectedSystemIds, setSelectedSystemIds] = useState<Set<string>>(
|
|
58
|
-
new Set()
|
|
58
|
+
new Set(),
|
|
59
59
|
);
|
|
60
60
|
|
|
61
61
|
// Status update fields
|
|
@@ -88,7 +88,7 @@ export const IncidentEditor: React.FC<Props> = ({
|
|
|
88
88
|
const { data: incidentDetail, refetch: refetchDetail } =
|
|
89
89
|
incidentClient.getIncident.useQuery(
|
|
90
90
|
{ id: incident?.id ?? "" },
|
|
91
|
-
{ enabled: !!incident?.id && open }
|
|
91
|
+
{ enabled: !!incident?.id && open },
|
|
92
92
|
);
|
|
93
93
|
|
|
94
94
|
// Sync updates from query
|
|
@@ -180,7 +180,7 @@ export const IncidentEditor: React.FC<Props> = ({
|
|
|
180
180
|
</DialogDescription>
|
|
181
181
|
</DialogHeader>
|
|
182
182
|
|
|
183
|
-
<div className="grid gap-6 py-4
|
|
183
|
+
<div className="grid gap-6 py-4">
|
|
184
184
|
{/* Basic Info Section */}
|
|
185
185
|
<div className="grid gap-4">
|
|
186
186
|
<div className="grid gap-2">
|