Clean up: Whitespace

This commit is contained in:
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 =`
<div class="pillar-table-row-filter">
<name-filter
<name-filter
:rowObjects="rowObjects"
:componentState="componentState"
@visible-row-objects-changed="$emit('visible-row-objects-changed', ...arguments)"

View File

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