Skip to content

Commit f28aff5

Browse files
committed
debug v-bind first
1 parent 92302aa commit f28aff5

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

js/src/vue-components/multiline/multiline-cell.component.js

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,16 @@ import atkLookup from '../share/atk-lookup';
66
export default {
77
name: 'atk-multiline-cell',
88
template: `
9-
<component :is="getComponent()"
9+
<component
10+
v-bind="getComponentProps()"
11+
:is="getComponent()"
1012
:fluid="true"
1113
class="fluid"
1214
@input="onInput"
1315
@onChange="onChange"
1416
v-model="inputValue"
1517
:name="inputName"
16-
ref="cell"
17-
v-bind="getComponentProps()"></component>
18+
ref="cell"></component>
1819
`,
1920
components: {
2021
'atk-multiline-readonly': multilineReadOnly,

js/src/vue-components/multiline/multiline-row.component.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export default {
1313
template: `
1414
<sui-table-row :verticalAlign="'middle'">
1515
<sui-table-cell :width=1 textAlign="center"><input type="checkbox" @input="onToggleDelete" v-model="toDelete"></sui-table-cell>
16-
<sui-table-cell @keydown.tab="onTab(idx)" v-for="(column, idx) in columns" :key="idx" :state="getErrorState(column)" v-bind="column.cellProps" :style="{ overflow: 'visible' }">
16+
<sui-table-cell @keydown.tab="onTab(idx)" v-for="(column, idx) in columns" v-bind="column.cellProps" :key="idx" :state="getErrorState(column)" :style="{ overflow: 'visible' }">
1717
<atk-multiline-cell
1818
:cellData="column"
1919
@update-value="onUpdateValue"

js/src/vue-components/share/atk-lookup.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ import atk from 'atk';
1515
*/
1616

1717
const template = `<sui-dropdown
18-
ref="drop"
1918
v-bind="dropdownProps"
19+
ref="drop"
2020
:loading="isLoading"
2121
@input="onChange"
2222
@filtered="onFiltered"

0 commit comments

Comments
 (0)