Skip to content

Commit

Permalink
fix: dialog btn text
Browse files Browse the repository at this point in the history
  • Loading branch information
icebergtsn committed Sep 14, 2024
1 parent 9c70648 commit ab5b7d8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bytetrade/ui",
"version": "0.1.22",
"version": "0.1.23",
"private": false,
"scripts": {
"serve": "vue-cli-service serve",
Expand Down
7 changes: 4 additions & 3 deletions packages/dialog/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { h } from "vue";
import {Dialog} from "quasar";
import { Dialog } from "quasar";
import { QDialogOptions } from "quasar/dist/types";

import IndexDialog from "./src/IndexDialog.vue";
Expand All @@ -9,6 +9,7 @@ interface DialogPropsType extends QDialogOptions {
icon?: string;
titAlign?: string;
okText?: string;
cancelText?: string;
okLoading?: boolean;
okStyle?: any;
prompt?: any;
Expand Down Expand Up @@ -38,8 +39,8 @@ const BtDialog = {
title: props.title,
icon: props.icon,
titAlign: props.titAlign,
ok: props.ok,
cancel: props.cancel,
ok: props.okText,
cancel: props.cancelText,
okLoading: props.okLoading,
okStyle: props.okStyle,
prompt: props.prompt
Expand Down

0 comments on commit ab5b7d8

Please sign in to comment.