Skip to content

Commit

Permalink
fix(ui): fix typos (#12899)
Browse files Browse the repository at this point in the history
  • Loading branch information
Hashen110 committed Mar 23, 2022
1 parent b3f7bc7 commit 029d05e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions ui/src/components/btn/use-btn.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

"to": {
"type": [ "String", "Object" ],
"desc": "Equivalent to Vue Router <router-link> 'to' property; Superseeded by 'href' prop if used",
"desc": "Equivalent to Vue Router <router-link> 'to' property; Superseded by 'href' prop if used",
"examples": [
"/home/dashboard",
":to=\"{ name: 'my-route-name' }\""
Expand All @@ -26,7 +26,7 @@

"replace": {
"type": "Boolean",
"desc": "Equivalent to Vue Router <router-link> 'replace' property; Superseeded by 'href' prop if used",
"desc": "Equivalent to Vue Router <router-link> 'replace' property; Superseded by 'href' prop if used",
"category": "navigation"
},

Expand Down
4 changes: 2 additions & 2 deletions ui/src/composables/private/__tests__/use-transition.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ describe('use-transition API', () => {
.should('have.class', 'q-transition--fade-enter-active')
})

it('should use a different show transtion if defined', () => {
it('should use a different show transition if defined', () => {
const transition = 'scale'
mount(WrapperOne, {
attrs: {
Expand All @@ -40,7 +40,7 @@ describe('use-transition API', () => {
.should('have.class', 'q-transition--fade-leave-active')
})

it('should use a different hide transtion if defined', () => {
it('should use a different hide transition if defined', () => {
const transition = 'scale'
mount(WrapperOne, {
attrs: {
Expand Down

0 comments on commit 029d05e

Please sign in to comment.