Skip to content

Commit

Permalink
Moving title to text and hiding user actions and comments
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathan-buttner committed Sep 21, 2021
1 parent 25bf795 commit a22ae2f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion x-pack/plugins/cases/server/saved_object_types/cases.ts
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ export const createCaseSavedObjectType = (
type: 'keyword',
},
title: {
type: 'keyword',
type: 'text',
},
status: {
type: 'keyword',
Expand Down
1 change: 1 addition & 0 deletions x-pack/plugins/cases/server/saved_object_types/comments.ts
Original file line number Diff line number Diff line change
Expand Up @@ -112,5 +112,6 @@ export const createCaseCommentSavedObjectType = ({
migrations: createCommentsMigrations(migrationDeps),
management: {
importableAndExportable: true,
visibleInManagement: false,
},
});
Original file line number Diff line number Diff line change
Expand Up @@ -51,5 +51,6 @@ export const caseUserActionSavedObjectType: SavedObjectsType = {
migrations: userActionsMigrations,
management: {
importableAndExportable: true,
visibleInManagement: false,
},
};

0 comments on commit a22ae2f

Please sign in to comment.