Skip to content

Commit 44fcbc6

Browse files
committed
some fixes
1 parent 56842c8 commit 44fcbc6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

opencti-platform/opencti-front/src/private/components/profile/Notifications.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ const Notifications: FunctionComponent = () => {
164164
const dataColumns: DataTableProps['dataColumns'] = {
165165
operation: {
166166
label: 'Operation',
167-
percentWidth: 20,
167+
percentWidth: 10,
168168
isSortable: isRuntimeSort,
169169
render: ({ notification_content, notification_type }: NotificationLine_node$data) => {
170170
const firstOperation = getFirstOperation({ notification_content, notification_type });
@@ -219,13 +219,13 @@ const Notifications: FunctionComponent = () => {
219219
},
220220
created: {
221221
label: 'Original creation date',
222-
percentWidth: 20,
222+
percentWidth: 25,
223223
isSortable: isRuntimeSort,
224224
},
225225
name: {
226226
id: 'trigger_name',
227227
label: 'Trigger name',
228-
percentWidth: 12,
228+
percentWidth: 17,
229229
isSortable: isRuntimeSort,
230230
render: ({ notification_type, name }, { storageHelpers: { handleAddFilter } }) => {
231231
return (
@@ -298,7 +298,7 @@ const Notifications: FunctionComponent = () => {
298298
};
299299

300300
return (
301-
<div style={{ marginLeft: -30 }}>
301+
<div style={{ marginLeft: -40 }}>
302302
<IconButton
303303
disabled={updating}
304304
onClick={(event) => {

0 commit comments

Comments
 (0)