Skip to content

Commit 3f7fcac

Browse files
committed
Rename plugin and importer action
1 parent e95dd7d commit 3f7fcac

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed

src/components/.gitkeep

Whitespace-only changes.

src/components/RepliesImporterComponent.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export default function RepliesImporterComponent({
99
return (
1010
<SimpleFileImporter
1111
onImport={onImport}
12-
heading="Replies Importer"
12+
heading="Import Replies"
1313
label="Select a file with replies in JSON"
1414
description={
1515
<>

src/metadata.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { PluginMetadata } from '@ds-wizard/plugin-sdk/types'
22

33
export const pluginMetadata: PluginMetadata = {
44
uuid: '6534f8f7-0d43-4c4d-9157-15af17f37649',
5-
name: 'Replies Importer Plugin',
5+
name: 'Replies Importer',
66
version: '0.1.0',
77
description: 'Importer for replies in JSON exported from wizard.',
88
}

src/plugin.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { pluginMetadata } from './metadata'
77
export default function (_settingsInput: unknown, _userSettingsInput: unknown): Plugin {
88
const plugin: Plugin = PluginBuilder.createWithNoSettings(pluginMetadata)
99
.addProjectImporter(
10-
'Replies Importer',
10+
'Replies',
1111
'replies-importer',
1212
'x-replies-importer',
1313
RepliesImporterComponent,

0 commit comments

Comments
 (0)