Skip to content

Commit

Permalink
Merge pull request #59 from istresearch/P4-1799
Browse files Browse the repository at this point in the history
P4-1799 - Object and Rule Formatter CSV Support (7.8.1)
  • Loading branch information
andrewkcarter committed Aug 3, 2020
2 parents e4fc2de + 5c19e0c commit 62ad3c6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion index.js
Expand Up @@ -22,7 +22,7 @@ export default function(kibana) {
},
},
},
init: async function(server) {
async init(server) {
registerFieldFormats(server);
},
config(Joi) {
Expand Down
2 changes: 1 addition & 1 deletion server/field-formatters/index.js
@@ -1,5 +1,5 @@
import { ObjectFieldFormatStub } from './ObjectFieldFormatStub';

export function registerFieldFormats(server) {
server.registerFieldFormat(ObjectFieldFormatStub);
server.newPlatform.setup.plugins.data.fieldFormats.register(ObjectFieldFormatStub);
}

0 comments on commit 62ad3c6

Please sign in to comment.