diff --git a/public/js/components/searchbar/employee.js b/public/js/components/searchbar/employee.js index afb947874..6d8d364d0 100644 --- a/public/js/components/searchbar/employee.js +++ b/public/js/components/searchbar/employee.js @@ -2,88 +2,82 @@ import action from "./action.js"; import actions from "./actions.js"; export default { - props: [ "res", "actions" ], - components: { - action: action, - actions: actions - }, - emits: [ 'actionexecuted' ], - template: ` -
- `, - methods: { - }, - computed: { - mailtourl: function() { - return 'mailto:' + this.res.email; - }, - telurl: function() { - return 'tel:' + this.res.phone; - } - } + props: [ "res", "actions" ], + components: { + action: action, + actions: actions + }, + emits: [ 'actionexecuted' ], + template: ` + + `, + methods: { + }, + computed: { + mailtourl: function() { + return 'mailto:' + this.res.email; + }, + telurl: function() { + return 'tel:' + this.res.phone; + } + } }; \ No newline at end of file