From ccc78af74250caaa9fbfca68c4574c6483f3ce26 Mon Sep 17 00:00:00 2001 From: Tobias Johansson Date: Thu, 4 Apr 2019 10:44:43 +0200 Subject: [PATCH] white space clean up --- .../common/vuecomponents/table/cells/renderer/CellProxy.js | 2 +- .../common/vuecomponents/table/cells/renderer/HeadCell.js | 2 +- .../vuecomponents/table/columns/filter/ColumnFilter.js | 4 ++-- .../common/vuecomponents/table/rows/filter/EnumFilter.js | 6 +++--- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/scripts/js/es6/common/vuecomponents/table/cells/renderer/CellProxy.js b/src/scripts/js/es6/common/vuecomponents/table/cells/renderer/CellProxy.js index 26bf97a9..562841a0 100644 --- a/src/scripts/js/es6/common/vuecomponents/table/cells/renderer/CellProxy.js +++ b/src/scripts/js/es6/common/vuecomponents/table/cells/renderer/CellProxy.js @@ -15,7 +15,7 @@ const TEMPLATE =` /** * Renders the cell that the column requests. - * + * * @emits item-clicked(mouseEvent,itemId) Re-emits if real cell is emitting it */ let CellProxy = Vue.component('pillar-cell-proxy', { diff --git a/src/scripts/js/es6/common/vuecomponents/table/cells/renderer/HeadCell.js b/src/scripts/js/es6/common/vuecomponents/table/cells/renderer/HeadCell.js index 870f0bb1..5a1f952d 100644 --- a/src/scripts/js/es6/common/vuecomponents/table/cells/renderer/HeadCell.js +++ b/src/scripts/js/es6/common/vuecomponents/table/cells/renderer/HeadCell.js @@ -30,7 +30,7 @@ const TEMPLATE =` /** * A cell in the Header of the table - * + * * @emits sort(column,direction) When user clicks column sort arrows. */ Vue.component('pillar-head-cell', { diff --git a/src/scripts/js/es6/common/vuecomponents/table/columns/filter/ColumnFilter.js b/src/scripts/js/es6/common/vuecomponents/table/columns/filter/ColumnFilter.js index e167619b..37c55c15 100644 --- a/src/scripts/js/es6/common/vuecomponents/table/columns/filter/ColumnFilter.js +++ b/src/scripts/js/es6/common/vuecomponents/table/columns/filter/ColumnFilter.js @@ -45,7 +45,7 @@ class ColumnState{ class ComponentState { /** * Serializable state of this component. - * + * * @param {Array} selected The columns that should be visible */ constructor(selected) { @@ -55,7 +55,7 @@ class ComponentState { /** * Component to select what columns to render in the table. - * + * * @emits visibleColumnsChanged(columns) When visible columns has changed * @emits componentStateChanged(newState) When column filter state changed. */ diff --git a/src/scripts/js/es6/common/vuecomponents/table/rows/filter/EnumFilter.js b/src/scripts/js/es6/common/vuecomponents/table/rows/filter/EnumFilter.js index 9422f510..1ad8c08a 100644 --- a/src/scripts/js/es6/common/vuecomponents/table/rows/filter/EnumFilter.js +++ b/src/scripts/js/es6/common/vuecomponents/table/rows/filter/EnumFilter.js @@ -44,7 +44,7 @@ class EnumState{ class ComponentState { /** * Serializable state of this component. - * + * * @param {Array} selected The enums that should be visible */ constructor(selected) { @@ -53,8 +53,8 @@ class ComponentState { } /** - * Filter row objects based on enumeratable values. - * + * Filter row objects based on enumeratable values. + * * @emits visibleRowObjectsChanged(rowObjects) When the objects to be visible has changed. * @emits componentStateChanged(newState) When row filter state changed. */