Skip to content

Commit

Permalink
🎨 Rename duplicate class name
Browse files Browse the repository at this point in the history
  • Loading branch information
williamchong committed Feb 16, 2024
1 parent 133671f commit aed69c8
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion components/EditableForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ import { Vue, Component, Prop } from 'vue-property-decorator'
import logTrackerEvent from '~/utils/logger'
@Component
export default class UploadForm extends Vue {
export default class EditableForm extends Vue {
@Prop(Number) readonly step: number | undefined
@Prop(String) readonly placeholder: string | undefined
@Prop({ default: 256 }) readonly maxLength: number | undefined
Expand Down
2 changes: 1 addition & 1 deletion components/IconCoin.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
import { Vue, Component, Prop } from 'vue-property-decorator'
@Component
export default class FormField extends Vue {
export default class IconCoin extends Vue {
// Type of the coin
@Prop(String) readonly type!: string | undefined
}
Expand Down
2 changes: 1 addition & 1 deletion components/IscnUploadForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ const MODE = {
}
@Component
export default class UploadForm extends Vue {
export default class IscnUploadForm extends Vue {
@Prop(Number) readonly step: number | undefined
@Prop({ default: MODE.REGISTER }) readonly mode: string | undefined
Expand Down
2 changes: 1 addition & 1 deletion components/NFTMint/Process.vue
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ export enum MintState {
@Component({
filters: { ellipsis }})
export default class UploadForm extends Vue {
export default class NFTMintProcess extends Vue {
@walletModule.Getter('getType') walletType!: string | null
@Prop(String) readonly iscnId!: string
Expand Down
2 changes: 1 addition & 1 deletion pages/nft/iscn/_iscnId.vue
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ export enum MintState {
},
layout: 'wallet',
})
export default class NFTTestMintPage extends Vue {
export default class NFTMintPage extends Vue {
@iscnModule.Getter getISCNById!: (arg0: string) => ISCNRecordWithID
@iscnModule.Action fetchISCNById!: (arg0: string) => Promise<{
records: ISCNRecordWithID[]
Expand Down

0 comments on commit aed69c8

Please sign in to comment.