aboutsummaryrefslogtreecommitdiff
path: root/src/components/tab_switcher/tab_switcher.js
diff options
context:
space:
mode:
authorjasper <jasper92341@hotmail.com>2019-02-08 13:13:11 -0800
committerjasper <jasper92341@hotmail.com>2019-02-08 13:13:11 -0800
commit92874b6902ee0d06ac4603c0b6351ccab92c60a5 (patch)
treef9319add6c0f22fdca341f87d97b04401a822880 /src/components/tab_switcher/tab_switcher.js
parent70c05a0c085adb95ef9946ac58a461f56252c2c2 (diff)
parentda0a5535eb09f6637df921a8a5f951c295bedeac (diff)
Fxing conflicts
Diffstat (limited to 'src/components/tab_switcher/tab_switcher.js')
-rw-r--r--src/components/tab_switcher/tab_switcher.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/tab_switcher/tab_switcher.js b/src/components/tab_switcher/tab_switcher.js
index f9c3f927..423df258 100644
--- a/src/components/tab_switcher/tab_switcher.js
+++ b/src/components/tab_switcher/tab_switcher.js
@@ -37,7 +37,7 @@ export default Vue.component('tab-switcher', {
return (
<div class={ classesWrapper.join(' ')}>
- <button onClick={this.activateTab(index)} class={ classesTab.join(' ') }>{slot.data.attrs.label}</button>
+ <button disabled={slot.data.attrs.disabled} onClick={this.activateTab(index)} class={ classesTab.join(' ') }>{slot.data.attrs.label}</button>
</div>
)
})