Skip to content

Commit

Permalink
Moving title to text and hiding user actions and comments (elastic#11…
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathan-buttner authored and kibanamachine committed Sep 22, 2021
1 parent 42b6cbd commit b963bc4
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 b963bc4

Please sign in to comment.