Clean up: Whitespace

This commit is contained in:
Tobias Johansson 2019-04-04 11:34:13 +02:00
parent ee5a1a8bb7
commit 3d8ee61b03
2 changed files with 4 additions and 4 deletions

View File

@ -2,7 +2,7 @@ import {NameFilter} from './NameFilter'
const TEMPLATE =` const TEMPLATE =`
<div class="pillar-table-row-filter"> <div class="pillar-table-row-filter">
<name-filter <name-filter
:rowObjects="rowObjects" :rowObjects="rowObjects"
:componentState="componentState" :componentState="componentState"
@visible-row-objects-changed="$emit('visible-row-objects-changed', ...arguments)" @visible-row-objects-changed="$emit('visible-row-objects-changed', ...arguments)"

View File

@ -1,5 +1,5 @@
const TEMPLATE =` const TEMPLATE =`
<input <input
:class="textInputClasses" :class="textInputClasses"
:placeholder="placeholderText" :placeholder="placeholderText"
v-model="textQuery" v-model="textQuery"
@ -9,7 +9,7 @@ const TEMPLATE =`
class ComponentState { class ComponentState {
/** /**
* Serializable state of this component. * Serializable state of this component.
* *
* @param {String} textQuery * @param {String} textQuery
*/ */
constructor(textQuery) { constructor(textQuery) {
@ -19,7 +19,7 @@ class ComponentState {
/** /**
* Component to filter rowobjects by a text value * Component to filter rowobjects by a text value
* *
* @emits visibleRowObjectsChanged(rowObjects) When the objects to be visible has changed. * @emits visibleRowObjectsChanged(rowObjects) When the objects to be visible has changed.
* @emits component-state-changed(newState) When row filter state changed. Filter query... * @emits component-state-changed(newState) When row filter state changed. Filter query...
*/ */