Fix bug
This commit is contained in:
parent
3dbc175091
commit
9107895754
1 changed files with 2 additions and 1 deletions
|
@ -72,6 +72,7 @@ import { hexifyAB } from '../../scripts/2fa';
|
||||||
import MkButton from '../../components/ui/button.vue';
|
import MkButton from '../../components/ui/button.vue';
|
||||||
import MkInfo from '../../components/ui/info.vue';
|
import MkInfo from '../../components/ui/info.vue';
|
||||||
import MkInput from '../../components/ui/input.vue';
|
import MkInput from '../../components/ui/input.vue';
|
||||||
|
import MkSwitch from '../../components/ui/switch.vue';
|
||||||
|
|
||||||
function stringifyAB(buffer) {
|
function stringifyAB(buffer) {
|
||||||
return String.fromCharCode.apply(null, new Uint8Array(buffer));
|
return String.fromCharCode.apply(null, new Uint8Array(buffer));
|
||||||
|
@ -80,7 +81,7 @@ function stringifyAB(buffer) {
|
||||||
export default Vue.extend({
|
export default Vue.extend({
|
||||||
i18n,
|
i18n,
|
||||||
components: {
|
components: {
|
||||||
MkButton, MkInfo, MkInput
|
MkButton, MkInfo, MkInput, MkSwitch
|
||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
|
Loading…
Reference in a new issue