white space clean up

This commit is contained in:
Tobias Johansson 2019-04-04 10:44:43 +02:00
parent de40b4b2b6
commit ccc78af742
4 changed files with 7 additions and 7 deletions

View File

@ -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', {

View File

@ -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', {

View File

@ -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.
*/

View File

@ -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.
*/