Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🎨 Rename duplicate class name #441

Merged
merged 1 commit into from
Feb 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 @@
}

@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 Expand Up @@ -547,7 +547,7 @@
}
this.epubMetadataList.push(epubMetadata)
} catch (err) {
console.error(err)

Check warning on line 550 in components/IscnUploadForm.vue

View workflow job for this annotation

GitHub Actions / ci (ubuntu-latest, 18)

Unexpected console statement
}
}

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 @@
},
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 Expand Up @@ -729,7 +729,7 @@
this.isCustomOgimage = true;
logTrackerEvent(this, 'IscnMintNFT', 'GetOgImageExists', arweaveID, 1);
} catch (err) {
console.error(err)

Check warning on line 732 in pages/nft/iscn/_iscnId.vue

View workflow job for this annotation

GitHub Actions / ci (ubuntu-latest, 18)

Unexpected console statement
}
}
if (!this.ogImageBlob && !this.ogImageArweaveId) {
Expand Down
Loading