diff --git a/package.json b/package.json
index 98b982c6..1acb55e3 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "@soramitsu/soramitsu-js-ui",
- "version": "0.7.8",
+ "version": "0.7.9",
"private": false,
"publishConfig": {
"registry": "https://nexus.iroha.tech/repository/npm-soramitsu-private/"
diff --git a/src/components/Button/SButton.vue b/src/components/Button/SButton.vue
index 59187786..7d971e2a 100644
--- a/src/components/Button/SButton.vue
+++ b/src/components/Button/SButton.vue
@@ -172,8 +172,8 @@ export default class SButton extends Mixins(SizeMixin, BorderRadiusMixin) {
return this.loading
}
- handleClick (): void {
- this.$emit('click')
+ handleClick (event): void {
+ this.$emit('click', event)
this.pressed = true
setTimeout(() => {
this.pressed = false
diff --git a/src/components/Input/SInput.vue b/src/components/Input/SInput.vue
index 91d89784..fd2f9693 100644
--- a/src/components/Input/SInput.vue
+++ b/src/components/Input/SInput.vue
@@ -30,7 +30,9 @@
@blur="handleBlur"
@focus="handleFocus"
@paste.native="handlePaste"
- />
+ >
+
+
diff --git a/src/styles/table.scss b/src/styles/table.scss
index 921f210a..587a6372 100644
--- a/src/styles/table.scss
+++ b/src/styles/table.scss
@@ -49,10 +49,10 @@
background-color: var(--s-color-base-background);
}
.el-table:not(.el-table--border)::before {
- background-color: var(--s-color-base-on-accent);
+ display: none
}
.el-table tr:last-child td {
- border-bottom-color: var(--s-color-base-on-accent);
+ border-bottom: none;
}
.el-table__header {
label.el-checkbox.is-disabled {